summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/linhes-scripts/system-cleanup.sh
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-03-26 18:15:58 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-03-26 18:15:58 (GMT)
commitfdb5c003b67137ad55a6605b0fd5da1738185b4b (patch)
tree66dfe007aac8b46c289887b71cd3fea0bf4c1ee7 /abs/core-testing/linhes-scripts/system-cleanup.sh
parent4787fdbecc9971b518322f705436e08bfef0f297 (diff)
downloadlinhes_pkgbuild-fdb5c003b67137ad55a6605b0fd5da1738185b4b.zip
linhes_pkgbuild-fdb5c003b67137ad55a6605b0fd5da1738185b4b.tar.gz
linhes_pkgbuild-fdb5c003b67137ad55a6605b0fd5da1738185b4b.tar.bz2
linhes-scripts: added modified version of tjc post-install
closes #518
Diffstat (limited to 'abs/core-testing/linhes-scripts/system-cleanup.sh')
-rwxr-xr-xabs/core-testing/linhes-scripts/system-cleanup.sh47
1 files changed, 47 insertions, 0 deletions
diff --git a/abs/core-testing/linhes-scripts/system-cleanup.sh b/abs/core-testing/linhes-scripts/system-cleanup.sh
new file mode 100755
index 0000000..59a4ebb
--- /dev/null
+++ b/abs/core-testing/linhes-scripts/system-cleanup.sh
@@ -0,0 +1,47 @@
+#!/bin/bash
+
+# This script cleans up some SVN stuff that the build process leaves
+# in /usr/share/mythtv, along with ownership and file permsisions on the
+# themes and the mythstream stuff. There are bunch of files which are
+# left executable for no good reason, although I can think of several
+# potentially bad reasons for it.
+
+find /usr/share/mythtv -name .svn -print0 | xargs -0 rm -rf
+find /usr/share/mythtv -name CVS -print0 | xargs -0 rm -rf
+
+THEMES=/usr/share/mythtv/themes
+
+chown -R root:root $THEMES
+chmod -R +r $THEMES
+find $THEMES -type f -print0 | xargs -0 chmod a-x
+
+
+chown -R mythtv:users /myth
+chown -R root:root /myth/backup/
+chown -R root:root /etc/sv
+
+chown -R http:users /data/srv/httpd/
+
+# None of thes files should be executable.
+for ext in gif png jpg xml htm html php ; do
+ find / -type f -name "*.$ext" -print0 | xargs -0 chmod a-x
+done
+
+# These files should be owned by root and not writable to anybody else
+
+#chown root:root /usr/share/mythtv/*.xml /usr/share/mythtv/*.ttf
+chown root:root /usr/share/mythtv/*.ttf
+
+chown -R root:root \
+ /usr/share/mythtv/i18n \
+ /usr/share/mythtv/mytharchive \
+ /usr/share/mythtv/mythflix \
+ /usr/share/mythtv/mythnews \
+ /usr/share/mythtv/mythvideo \
+ /usr/share/mythtv/mythweather \
+ /usr/LH
+
+
+
+# Report any remaining orphans...
+find / /myth -xdev \( -nouser -o -nogroup \) -ls