##################################
-@infer_image
+@default_image
def command_pull():
# type: () -> int
parser_version.set_defaults(func=command_version)
parser_pull = subparsers.add_parser(
- 'pull', help='pull latest image version')
+ 'pull', help='pull the default container image')
parser_pull.set_defaults(func=command_pull)
parser_inspect_image = subparsers.add_parser(
parser_adopt.add_argument(
'--skip-pull',
action='store_true',
- help='do not pull the latest image before adopting')
+ help='do not pull the default image before adopting')
parser_adopt.add_argument(
'--force-start',
action='store_true',
parser_bootstrap.add_argument(
'--skip-pull',
action='store_true',
- help='do not pull the latest image before bootstrapping')
+ help='do not pull the default image before bootstrapping')
parser_bootstrap.add_argument(
'--skip-firewalld',
action='store_true',