Commit 50f2cfaf authored by Marco Mariani's avatar Marco Mariani

grammar nazi

parent 87362b0d
...@@ -94,7 +94,7 @@ class SoftwareCommand(SlapgridCommand): ...@@ -94,7 +94,7 @@ class SoftwareCommand(SlapgridCommand):
ap = super(SoftwareCommand, self).get_parser(prog_name) ap = super(SoftwareCommand, self).get_parser(prog_name)
ap.add_argument('--only-sr', '--only', ap.add_argument('--only-sr', '--only',
help='Force the update of a single software release (can be full URL or MD5 hash), ' help='Force the update of a single software release (can be full URL or MD5 hash), '
'even if is already installed. This option will make all others ' 'even if is already installed. This option will make all other '
'sofware releases be ignored.') 'sofware releases be ignored.')
return ap return ap
...@@ -112,7 +112,7 @@ class InstanceCommand(SlapgridCommand): ...@@ -112,7 +112,7 @@ class InstanceCommand(SlapgridCommand):
ap.add_argument('--only-cp', '--only', ap.add_argument('--only-cp', '--only',
help='Update a single or a list of computer partitions ' help='Update a single or a list of computer partitions '
'(ie.:slappartX, slappartY), ' '(ie.:slappartX, slappartY), '
'this option will make all others computer partitions be ignored.') 'this option will make all other computer partitions be ignored.')
return ap return ap
......
...@@ -52,16 +52,16 @@ def parse_arguments(*argument_tuple): ...@@ -52,16 +52,16 @@ def parse_arguments(*argument_tuple):
ap.add_argument('--now', action='store_true', ap.add_argument('--now', action='store_true',
help='Launch slapgrid without delay. Default behavior.') help='Launch slapgrid without delay. Default behavior.')
ap.add_argument('--all', action='store_true', ap.add_argument('--all', action='store_true',
help='Launch slapgrid to process all Softare Releases ' help='Launch slapgrid to process all Software Releases '
'and/or Computer Partitions.') 'and/or Computer Partitions.')
ap.add_argument('--only-sr', ap.add_argument('--only-sr',
help='Force the update of a single software release (use url hash), ' help='Force the update of a single software release (use url hash), '
'even if is already installed. This option will make all others ' 'even if is already installed. This option will make all other '
'sofware releases be ignored.') 'sofware releases be ignored.')
ap.add_argument('--only-cp', ap.add_argument('--only-cp',
help='Update a single or a list of computer partitions ' help='Update a single or a list of computer partitions '
'(ie.:slappartX, slappartY), ' '(ie.:slappartX, slappartY), '
'this option will make all others computer partitions be ignored.') 'this option will make all other computer partitions be ignored.')
ap.add_argument('configuration_file', type=argparse.FileType(), ap.add_argument('configuration_file', type=argparse.FileType(),
help='SlapOS configuration file.') help='SlapOS configuration file.')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment