add --remote-exec and --remote-copy to command line args

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
remotes/origin/2.0
Nico Schottelius 13 years ago
parent ab53f471f8
commit c7fbdc8195
  1. 6
      bin/cdist

@ -68,6 +68,12 @@ def commandline():
parser['configinstall'].add_argument('-s', '--sequential',
help='Operate on multiple hosts sequentially (default)',
action='store_false', dest='parallel')
parser['configinstall'].add_argument('--remote-exec',
help='Command to use for remote execution (should behave like ssh)',
action='store_true', dest='remote_exec')
parser['configinstall'].add_argument('--remote-copy',
help='Command to use for remote copy (should behave like scp)',
action='store_true', dest='remote_copy')
# Config
parser['config'] = parser['sub'].add_parser('config',

Loading…
Cancel
Save