diff options
Diffstat (limited to 'abs/core/LinHES-config/systemconfig.py')
-rwxr-xr-x | abs/core/LinHES-config/systemconfig.py | 36 |
1 files changed, 32 insertions, 4 deletions
diff --git a/abs/core/LinHES-config/systemconfig.py b/abs/core/LinHES-config/systemconfig.py index ed19675..c7cbb8a 100755 --- a/abs/core/LinHES-config/systemconfig.py +++ b/abs/core/LinHES-config/systemconfig.py @@ -33,7 +33,35 @@ logging.getLogger('').addHandler(infofile) def usage(): - logging.info("tell people how to use this") + logging.info("List of available modules") + logging.info("more then one module by be called") + logging.info("Ex: misc,sleep,audio") + cmd_list = ["misc", + "sleep", + "hostype", + "hostypec" , + "advanced" , + "audio" , + "network" , + "advancedX" , + "webuser" , + "restartfe" , + "reloadfe" , + "ddns" , + "screensaver" , + "ir" , + "user", + "software", + "plugins", + "smolt", + "all", + "func", + "supplemental", + "vnc", + "fileshare", + "config_xml"] + for i in cmd_list: + logging.info(i) def setup_x(systemconfig): if mv_common.read_config(mv_common.module_config,"xorg") == False : @@ -95,9 +123,9 @@ def generate_config_xml(uuid,dbhost): </UPnP> </Configuration> ''' - - - + + + configxml= configxml_t %(dbhost,uuid) return configxml |