summaryrefslogtreecommitdiffstats
path: root/abs/core/LinHES-config/mv_install.py
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2011-12-07 19:31:23 (GMT)
committerJames Meyer <james.meyer@operamail.com>2011-12-07 19:31:23 (GMT)
commiteb5fd1b1e7dfc1e909e0f941bb7717bd6d9271a3 (patch)
tree73a81b02c746dfb2c24058e61d6ce752b226c1b7 /abs/core/LinHES-config/mv_install.py
parent711e8aa3f3b8ee301550227b285ee3593e304564 (diff)
downloadlinhes_pkgbuild-eb5fd1b1e7dfc1e909e0f941bb7717bd6d9271a3.zip
linhes_pkgbuild-eb5fd1b1e7dfc1e909e0f941bb7717bd6d9271a3.tar.gz
linhes_pkgbuild-eb5fd1b1e7dfc1e909e0f941bb7717bd6d9271a3.tar.bz2
LinHES-config: - Add ability to poll the MBE to see if xymon & fun is supported.
- If a new feature is supported, install the client - Create config.xml in /usr/share/mythtv and symlink it into mythtv home dir. - setup a network enabled rsyslog - For new installs fix fstab to include ACL's
Diffstat (limited to 'abs/core/LinHES-config/mv_install.py')
-rwxr-xr-xabs/core/LinHES-config/mv_install.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/abs/core/LinHES-config/mv_install.py b/abs/core/LinHES-config/mv_install.py
index 922b921..85220cf 100755
--- a/abs/core/LinHES-config/mv_install.py
+++ b/abs/core/LinHES-config/mv_install.py
@@ -555,9 +555,9 @@ def create_fstab(extralines):
fstab_list.append(line)
line = '''/dev/sr0 /media/cdrom auto ro,user,noauto,unhide 0 0\n'''
fstab_list.append(line)
- line = '''UUID=ROOTUID / auto defaults,noatime 0 1\n'''
+ line = '''UUID=ROOTUID / auto defaults,noatime,acl 0 1\n'''
fstab_list.append(line)
- line = '''UUID=DATAUID %s auto defaults,noatime 0 1\n''' %(data_config.DATAMOUNT)
+ line = '''UUID=DATAUID %s auto defaults,noatime,acl 0 1\n''' %(data_config.DATAMOUNT)
fstab_list.append(line)
line = '''UUID=SWAPUID swap swap defaults 0 0 \n'''
fstab_list.append(line)