X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plc-config-tty;h=55e6600a899baa0b59b36073b4a17d13bcb6f751;hb=3ca575c5d44de0214b54c63eb99ca0cbd8bbd13c;hp=b31e022e9b35e58bdbd298cc946688611348171c;hpb=7f1601f815e53889f7f1294d9cd68ab71457f383;p=myplc.git diff --git a/plc-config-tty b/plc-config-tty index b31e022..55e6600 100755 --- a/plc-config-tty +++ b/plc-config-tty @@ -20,29 +20,32 @@ import getopt from plc_config import PLCConfiguration #################### -release_id = "$Id: plc-config-tty,v 1.7 2006/08/18 09:31:55 thierry Exp $" -release_rev = "$Revision: 1.7 $" +release_id = "$Id: plc-config-tty,v 1.9 2006/12/08 08:42:14 thierry Exp $" +release_rev = "$Revision: 1.9 $" def init_flavour (flavour): global service - global common_variables + global usual_variables if (flavour == "devel"): service="plc-devel" - common_variables=("PLC_DEVEL_FEDORA_URL", + usual_variables=("PLC_DEVEL_FEDORA_URL", "PLC_DEVEL_CVSROOT") config_dir = "/plc/devel/data/etc/planetlab" else: service="plc" - common_variables=("PLC_NAME", + usual_variables=("PLC_NAME", + "PLC_SLICE_PREFIX", "PLC_ROOT_USER", "PLC_ROOT_PASSWORD", + "PLC_MAIL_ENABLED", "PLC_MAIL_SUPPORT_ADDRESS", - "PLC_DB_HOST", - "PLC_API_HOST", - "PLC_WWW_HOST", +# "PLC_DB_HOST", +# "PLC_API_HOST", +# "PLC_WWW_HOST", "PLC_BOOT_HOST", "PLC_NET_DNS1", - "PLC_NET_DNS2") + "PLC_NET_DNS2", + ) config_dir = "/etc/planetlab" global def_default_config def_default_config= "%s/default_config.xml" % config_dir @@ -365,7 +368,7 @@ def mainloop (cdef, cread, cwrite, default_config, site_config, consolidated_con print ("You might want to type 'r' (restart plc) or 'q' (quit)") elif (command == "u"): try: - for varname in common_variables: + for varname in usual_variables: (category,variable) = cdef.locate_varname(varname) prompt_variable(cdef, cread, cwrite, category, variable, False) except Exception, inst: