def add_args():
    utils.add_arg(
        shell.do_boot,
        '--admin-pass',
        default=None,
        metavar='<admin-pass>',
        help=
        "Specifies the admin password of the server to be used during creation"
    )
def add_args():
    utils.add_arg(shell.do_boot,
        '--no-public',
        dest='public',
        action='store_false',
        default=True,
        help='Boot instance without public network connectivity.')
    utils.add_arg(shell.do_boot,
        '--no-service-net',
        dest='service_net',
        action='store_false',
        default=True,
        help='Boot instance without service network connectivity.')
def add_args():
    utils.add_arg(shell.do_boot,
        '--admin-pass',
        default=None,
        metavar='<admin-pass>',
        help="Specifies the admin password of the server to be used during creation")