summaryrefslogtreecommitdiffstats
path: root/src/lib/Options.py
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2007-12-31 13:39:44 +0000
committerNarayan Desai <desai@mcs.anl.gov>2007-12-31 13:39:44 +0000
commite5404471d08f1b3574caa4f172da78356079f8e6 (patch)
tree5f098d62f46d9da425e5f1f6f6ca07ed7ad2f4c7 /src/lib/Options.py
parent388ae76f595adfa23b4b04f1a567d2cb66c684b3 (diff)
downloadbcfg2-e5404471d08f1b3574caa4f172da78356079f8e6.tar.gz
bcfg2-e5404471d08f1b3574caa4f172da78356079f8e6.tar.bz2
bcfg2-e5404471d08f1b3574caa4f172da78356079f8e6.zip
Fix opt args for client (again)
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4150 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Options.py')
-rw-r--r--src/lib/Options.py34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/lib/Options.py b/src/lib/Options.py
index 5f2369063..b896644f3 100644
--- a/src/lib/Options.py
+++ b/src/lib/Options.py
@@ -158,43 +158,43 @@ SENDMAIL_PATH = Option('Path to sendmail', cf=('reports', 'sendmailpath'),
default='/usr/lib/sendmail')
CLIENT_PROFILE = Option('assert the given profile for the host',
- default='False', cmd='-p', odesc="<profile>")
+ default=False, cmd='-p', odesc="<profile>")
CLIENT_RETRIES = Option('the number of times to retry network communication',
default='3', cmd='-R', cf=('communication', 'retries'),
odesc="<retry count>")
CLIENT_DRYRUN = Option('do not actually change the system',
- default='False', cmd='-n', )
+ default=False, cmd='-n', )
CLIENT_EXTRA_DISPLAY = Option('enable extra entry output',
- default='False', cmd='-e', )
+ default=False, cmd='-e', )
CLIENT_PARANOID = Option('make automatic backups of config files',
- default='False', cmd='-P', )
-CLIENT_AGENT = Option('run in agent (continuous) mode, wait for reconfigure command from server', default='False', cmd='-A', )
-CLIENT_DRIVERS = Option('Specify tool driver set', default='False',
+ default=False, cmd='-P', )
+CLIENT_AGENT = Option('run in agent (continuous) mode, wait for reconfigure command from server', default=False, cmd='-A', )
+CLIENT_DRIVERS = Option('Specify tool driver set', default=False,
cmd='-D', cf=('client', 'drivers'),
odesc="<driver1,driver2>")
CLIENT_CACHE = Option('store the configuration in a file',
- default='False', cmd='-c', odesc="<cache path>")
+ default=False, cmd='-c', odesc="<cache path>")
CLIENT_REMOVE = Option('force removal of additional configuration items',
- default='False', cmd='-r', odesc="<entry type|all>")
-CLIENT_BUNDLE = Option('only configure the given bundle', default='False',
+ default=False, cmd='-r', odesc="<entry type|all>")
+CLIENT_BUNDLE = Option('only configure the given bundle', default=False,
cmd='-b', odesc='<bundle>')
-CLIENT_KEVLAR = Option('run in kevlar (bulletproof) mode', default='False',
+CLIENT_KEVLAR = Option('run in kevlar (bulletproof) mode', default=False,
cmd='-k', )
-CLIENT_BUILD = Option('run in build mode', default='False', cmd='-B', )
+CLIENT_BUILD = Option('run in build mode', default=False, cmd='-B', )
CLIENT_FILE = Option('configure from a file rather than querying the server',
- default='False', cmd='-f', odesc='<specification path>')
-SERVER_FINGERPRINT = Option('Server Fingerprint', default='False', cmd='-F',
+ default=False, cmd='-f', odesc='<specification path>')
+SERVER_FINGERPRINT = Option('Server Fingerprint', default=False, cmd='-F',
cf=('communication', 'fingerprint'),
odesc='<fingerprint>')
-CLIENT_QUICK = Option('disable some checksum verification', default='False',
+CLIENT_QUICK = Option('disable some checksum verification', default=False,
cmd='-q', )
-CLIENT_BACKGROUND = Option('Daemonize the agent', default='False', cmd='-i', )
+CLIENT_BACKGROUND = Option('Daemonize the agent', default=False, cmd='-i', )
CLIENT_PORT = Option('the port on which to bind for agent mode', default='6789',
cmd='-g', cf=('communication', 'agent-port'),
odesc='<agent port>')
-CLIENT_USER = Option('the user to provide for authentication', default='False',
+CLIENT_USER = Option('the user to provide for authentication', default='root',
cmd='-u', cf=('communication', 'user'), odesc='<user>')
-INTERACTIVE = Option('prompt the user for each change', default='False',
+INTERACTIVE = Option('prompt the user for each change', default=False,
cmd='-I', )
class OptionParser(OptionSet):