|
|
|
@ -159,6 +159,11 @@ def commandline(): |
|
|
|
|
default=os.environ.get('CDIST_REMOTE_EXEC')) |
|
|
|
|
parser['config'].set_defaults(func=cdist.config.Config.commandline) |
|
|
|
|
|
|
|
|
|
# Install |
|
|
|
|
parser['install'] = parser['sub'].add_parser('install', add_help=False, |
|
|
|
|
parents=[parser['config']]) |
|
|
|
|
parser['install'].set_defaults(func=cdist.install.Install.commandline) |
|
|
|
|
|
|
|
|
|
# Shell |
|
|
|
|
parser['shell'] = parser['sub'].add_parser( |
|
|
|
|
'shell', parents=[parser['loglevel']]) |
|
|
|
@ -168,11 +173,6 @@ def commandline(): |
|
|
|
|
' should be POSIX compatible shell.')) |
|
|
|
|
parser['shell'].set_defaults(func=cdist.shell.Shell.commandline) |
|
|
|
|
|
|
|
|
|
# Install |
|
|
|
|
parser['install'] = parser['sub'].add_parser('install', add_help=False, |
|
|
|
|
parents=[parser['config']]) |
|
|
|
|
parser['install'].set_defaults(func=cdist.install.Install.commandline) |
|
|
|
|
|
|
|
|
|
for p in parser: |
|
|
|
|
parser[p].epilog = ( |
|
|
|
|
"Get cdist at http://www.nico.schottelius.org/software/cdist/") |
|
|
|
|