diff options
author | James Cammarata <jcammarata@ansibleworks.com> | 2014-02-15 09:57:52 -0600 |
---|---|---|
committer | James Cammarata <jcammarata@ansibleworks.com> | 2014-02-15 09:57:52 -0600 |
commit | 52c9c1dc39ed7ad1e636c90f1e20efd718f6c97f (patch) | |
tree | 2d8a979ab828dd5166353ee83d858724884fb469 /bin/ansible-galaxy | |
parent | 9dd94876921f8ed11b7c4a953685d7433214be67 (diff) | |
download | ansible-52c9c1dc39ed7ad1e636c90f1e20efd718f6c97f.tar.gz |
Fixing usage string in ansible-galaxy install for role files
Diffstat (limited to 'bin/ansible-galaxy')
-rwxr-xr-x | bin/ansible-galaxy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ansible-galaxy b/bin/ansible-galaxy index d14a501572..a528b950f8 100755 --- a/bin/ansible-galaxy +++ b/bin/ansible-galaxy @@ -173,7 +173,7 @@ def build_option_parser(action): help='The path in which the skeleton role will be created.' 'The default is the current working directory.') elif action == "install": - parser.set_usage("usage: %prog install [options] [-f FILE | role_name(s)[,version] | tar_file(s)]") + parser.set_usage("usage: %prog install [options] [-r FILE | role_name(s)[,version] | tar_file(s)]") parser.add_option( '-i', '--ignore-errors', dest='ignore_errors', action='store_true', default=False, help='Ignore errors and continue with the next specified role.') |