mirror of
https://github.com/ansible/ansible-documentation.git
synced 2026-03-26 13:18:58 +07:00
Force forks to be an integer when read by command line
This commit is contained in:
@@ -42,7 +42,7 @@ class Cli(object):
|
||||
help="path to hosts list", default=C.DEFAULT_HOST_LIST)
|
||||
parser.add_option("-L", "--library", dest="module_path",
|
||||
help="path to module library", default=C.DEFAULT_MODULE_PATH)
|
||||
parser.add_option("-f", "--forks", dest="forks",
|
||||
parser.add_option("-f", "--forks", dest="forks", type="int",
|
||||
help="level of parallelism", default=C.DEFAULT_FORKS)
|
||||
parser.add_option("-n", "--name", dest="module_name",
|
||||
help="module name to execute", default=C.DEFAULT_MODULE_NAME)
|
||||
|
||||
Reference in New Issue
Block a user