diff options
author | James Meyer <james.meyer@operamail.com> | 2009-08-19 21:44:15 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-08-19 21:44:15 (GMT) |
commit | 402ee2c0ec34cb3beb100ecac874cbf4622c0c07 (patch) | |
tree | d6cf72bb83d81800b565ae05ad97ccf4d14e0127 | |
parent | 79daa29002e02579e84a5bb7ca895be2395a7fce (diff) | |
download | linhes_pkgbuild-402ee2c0ec34cb3beb100ecac874cbf4622c0c07.zip linhes_pkgbuild-402ee2c0ec34cb3beb100ecac874cbf4622c0c07.tar.gz linhes_pkgbuild-402ee2c0ec34cb3beb100ecac874cbf4622c0c07.tar.bz2 |
mythvantage-config: mv_install sync.
-rwxr-xr-x | abs/mv-core/MythVantage-config/mv_install.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/abs/mv-core/MythVantage-config/mv_install.py b/abs/mv-core/MythVantage-config/mv_install.py index 56118c1..7d72c22 100755 --- a/abs/mv-core/MythVantage-config/mv_install.py +++ b/abs/mv-core/MythVantage-config/mv_install.py @@ -844,7 +844,9 @@ def special_hardware_check(): typefile.close() except: logging.debug("Couldn't write to file: ", typefile) - + if re.match("no_meth",item) != None : + cmd = " touch %s%s/.no_meth" %(data_config.MOUNTPOINT, data_config.MYTHHOME) + runcmd(cmd) def swapsearch(): #currently unused! @@ -1038,12 +1040,11 @@ def full_install(hostoptions): cmd = "chroot %s %s/bin/restore_default_settings.sh -c ACCESSCONTROL " %(data_config.MOUNTPOINT, MVROOT) runcmd(cmd) umount_bind_chroot() - #cmd = " chroot %s %s/bin/systemconfig.sh advanced, user" %(data_config.MOUNTPOINT, MVROOT) - #runcmd(cmd) cmd = " touch %s%s/.configure" %(data_config.MOUNTPOINT, data_config.MYTHHOME) runcmd(cmd) cmd = " chmod 777 %s%s/.configure" %(data_config.MOUNTPOINT, data_config.MYTHHOME) runcmd(cmd) + msg = "Done" update_status(msg) cp_and_log("/tmp/mythvantage_install.log", data_config.MOUNTPOINT+"/var/log/mythvantage_install.log") |