Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
keep_jail_on_failure should be a flag
Browse files Browse the repository at this point in the history
Previously it required a boolean.

FreeNAS Ticket: #48416
  • Loading branch information
Brandon Schneider committed Sep 26, 2018
1 parent 9321111 commit 0aef5eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iocage_cli/fetch.py
Expand Up @@ -60,7 +60,7 @@ def validate_count(ctx, param, value):
help="Specify the files to fetch from the mirror.")
@click.option("--server", "-s", default="download.freebsd.org",
help="Server to fetch from.")
@click.option("--keep_jail_on_failure", "-k", default=False,
@click.option("--keep_jail_on_failure", "-k", default=False, is_flag=True,
help="Keep jails on failure")
@click.option("--user", "-u", default="anonymous", help="The user to use.")
@click.option(
Expand Down

0 comments on commit 0aef5eb

Please sign in to comment.