diff options
Diffstat (limited to 'abs/core/LinHES-config/systemconfig.py')
-rwxr-xr-x | abs/core/LinHES-config/systemconfig.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/abs/core/LinHES-config/systemconfig.py b/abs/core/LinHES-config/systemconfig.py index baaab4f..d9c83b7 100755 --- a/abs/core/LinHES-config/systemconfig.py +++ b/abs/core/LinHES-config/systemconfig.py @@ -153,7 +153,8 @@ def main(argv): "all":False, "dhcp_request":False , "func":False, "supplemental":False, "vnc":False, "fileshare":False, - "config_xml":False } + "config_xml":False, + "locale":False } try: opts, args = getopt.getopt(argv, 'c:hm:d:', ["help","modules" ] ) except getopt.GetoptError, why: @@ -205,6 +206,8 @@ def main(argv): cmdmodule["vnc"] = True cmdmodule["fileshare"] = True cmdmodule["config_xml"] = True + cmdmodule["locale"] = True + ##putting this here until I can create the seperate share module #if cmdmodule["fileshare"]: @@ -373,7 +376,9 @@ def main(argv): import mv_fileshare mv_fileshare.setup_fileshare(systemconfig, data_config) - + if cmdmodule["locale"]: + import mv_locale + mv_locale.setup_locale(systemconfig) if __name__ == "__main__": |