diff options
Diffstat (limited to 'abs/core-testing/LinHES-config-22/mv_software.py')
-rwxr-xr-x | abs/core-testing/LinHES-config-22/mv_software.py | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/abs/core-testing/LinHES-config-22/mv_software.py b/abs/core-testing/LinHES-config-22/mv_software.py deleted file mode 100755 index aabcf89..0000000 --- a/abs/core-testing/LinHES-config-22/mv_software.py +++ /dev/null @@ -1,61 +0,0 @@ -# -*- coding: utf-8 -*- -import logging, mv_common -import os, re - -def setup_software(systemconfig, data_config): - logging.info("____Start of Software install____") - postfix='' - if data_config.SYSTEMTYPE == "MythVantage": - #look for the installed prefix - cmd="pacman -Q mythtv-release-fixes" - rc = mv_common.runcmd(cmd) - if rc == 0: - postfix = "-release-fixes" - else: - postfix = "-svn" - - default_disabled = ("mythphone", "mytharchive", "mythbrowser", "mythnews", - "mythgame", "mythflix", "mythweather", - "mythzoneminder" ) - - default_installed=("mythcontrols", "mythgallery", "mythmovies", - "mythmusic", "mythsmolt", "mythvideo") - other_pkg=("miro", "mednafen", "romdb", "xine", "dvdcss", "webmin" , "fuppes", "foldingathome", "mythappletrailers", "mythstream", "mythvodka") - else: - default_disabled = ("mythphone", "mytharchive", "mythbrowser", "mythnews", - "mythgame", "mythflix", "mythweather", - "mythappletrailers", "mythstream", "mythvodka", - "mythzoneminder" ) - - default_installed=("mythcontrols", "mythgallery", "mythmovies", - "mythmusic", "mythsmolt", "mythvideo") - other_pkg=("miro", "mednafen", "romdb", "xine", "dvdcss", "webmin" , "fuppes", "foldingathome") - - for pkg in default_disabled: - pkgname=pkg+postfix - try: - if systemconfig[pkg] == "1": - mv_common.pacinstall(pkgname) - else: - mv_common.pacremove(pkgname) - except: - logging.debug(" ERROR-- %s is not defined", pkg) - - for pkg in default_installed: - try: - if systemconfig[pkg] == "0": - mv_common.pacremove(pkgname) - else: - mv_common.pacinstall(pkgname) - except: - logging.debug(" ERROR-- %s is not defined", pkg) - - for pkg in other_pkg: - try: - if systemconfig[pkg] == "1": - mv_common.pacinstall(pkg) - elif systemconfig[pkg] == "0": - mv_common.pacremove(pkg) - except: - logging.debug(" ERROR-- %s is not defined", pkg) - logging.info("__End Software\n ") |