summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/LinHES-config/ir.py
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2009-06-04 13:41:18 (GMT)
committerJames Meyer <james.meyer@operamail.com>2009-06-04 13:41:18 (GMT)
commit958a4c40386321b8c9008c42afd6d911d9009962 (patch)
tree56fed0c49d46e922cd400992673df7a1f215e180 /abs/core-testing/LinHES-config/ir.py
parentd9d928e1890f4c841889d2362b988466b85904cd (diff)
downloadlinhes_pkgbuild-958a4c40386321b8c9008c42afd6d911d9009962.zip
linhes_pkgbuild-958a4c40386321b8c9008c42afd6d911d9009962.tar.gz
linhes_pkgbuild-958a4c40386321b8c9008c42afd6d911d9009962.tar.bz2
LinHes-config: Removing unused files
Diffstat (limited to 'abs/core-testing/LinHES-config/ir.py')
-rw-r--r--abs/core-testing/LinHES-config/ir.py41
1 files changed, 0 insertions, 41 deletions
diff --git a/abs/core-testing/LinHES-config/ir.py b/abs/core-testing/LinHES-config/ir.py
deleted file mode 100644
index a6723ce..0000000
--- a/abs/core-testing/LinHES-config/ir.py
+++ /dev/null
@@ -1,41 +0,0 @@
-# -*- coding: utf-8 -*-
-import logging, mv_common
-import os, re
-
-def setup_ir(systemconfig, data_config):
- logging.info("____Start of Software install____")
- default_disabled = ("mythphone", "mytharchive", "mythbrowser", "mythnews",
- "mythgame", "mythflix", "mythweather",
- "mythappletrailers", "mythstream", "mythvodka")
-
- default_installed=("mythcontrols", "mythgallery", "mythmovies",
- "mythmusic", "mythsmolt", "mythvideo")
- other_pkg=("miro", "xe", "romdb", "xine", "dvdcss", "webmin")
-
- for pkg in default_disabled:
- try:
- if systemconfig[pkg] == "1":
- mv_common.pacinstall(pkg)
- else:
- mv_common.pacremove(pkg)
- except:
- logging.debug(" ERROR-- %s is not defined", pkg)
-
- for pkg in default_installed:
- try:
- if systemconfig[pkg] == "0":
- mv_common.pacremove(pkg)
- else:
- mv_common.pacinstall(pkg)
- 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 ") \ No newline at end of file