remove parallel and sequential args, until they are working

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-09-11 21:37:40 +02:00
parent c0ab4cdd8d
commit 47c5ebcf3f
1 changed files with 6 additions and 6 deletions

View File

@ -588,12 +588,12 @@ if __name__ == "__main__":
parser.add_argument('-i', '--initial-manifest',
help='Path to a cdist manifest or - to read from stdin',
dest='manifest', required=False)
parser.add_argument('-p', '--parallel',
help='Operate on multiple hosts in parallel',
action='store_true', dest='parallel')
parser.add_argument('-s', '--sequential',
help='Operate on multiple hosts sequentially',
action='store_false', dest='parallel')
# parser.add_argument('-p', '--parallel',
# help='Operate on multiple hosts in parallel',
# action='store_true', dest='parallel')
# parser.add_argument('-s', '--sequential',
# help='Operate on multiple hosts sequentially',
# action='store_false', dest='parallel')
args = parser.parse_args(sys.argv[1:])
if args.debug: