summaryrefslogtreecommitdiffstats
path: root/discover/pb-discover.c
diff options
context:
space:
mode:
authorGeoff Levand <geoff@infradead.org>2013-07-23 12:09:18 -0700
committerGeoff Levand <geoff@infradead.org>2013-07-23 12:09:18 -0700
commite5f5a2e91e89af08925b6dae3680fc9ef62190ff (patch)
tree6a6fe3e61759a5650cf93f6d8f8a1d1a644771f7 /discover/pb-discover.c
parent050e48452f1c67195f8ac630f5893d4806fbe2d2 (diff)
downloadtalos-petitboot-e5f5a2e91e89af08925b6dae3680fc9ef62190ff.tar.gz
talos-petitboot-e5f5a2e91e89af08925b6dae3680fc9ef62190ff.zip
discover: Add --no-autoboot option
Add the command line option --no-autoboot to pb-discover and update the pb-discover manpage. Signed-off-by: Geoff Levand <geoff@infradead.org>
Diffstat (limited to 'discover/pb-discover.c')
-rw-r--r--discover/pb-discover.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/discover/pb-discover.c b/discover/pb-discover.c
index 986401d..007e66f 100644
--- a/discover/pb-discover.c
+++ b/discover/pb-discover.c
@@ -28,7 +28,8 @@ static void print_usage(void)
{
print_version();
printf(
-"Usage: pb-discover [-h, --help] [-l, --log log-file] [-V, --version]\n");
+"Usage: pb-discover [-a, --no-autoboot] [-h, --help] [-l, --log log-file]\n"
+" [-n, --dry-run] [-V, --version]\n");
}
/**
@@ -42,10 +43,11 @@ enum opt_value {opt_undef = 0, opt_yes, opt_no};
*/
struct opts {
+ enum opt_value no_autoboot;
enum opt_value show_help;
const char *log_file;
- enum opt_value show_version;
enum opt_value dry_run;
+ enum opt_value show_version;
};
/**
@@ -55,14 +57,16 @@ struct opts {
static int opts_parse(struct opts *opts, int argc, char *argv[])
{
static const struct option long_options[] = {
+ {"no-autoboot", no_argument, NULL, 'a'},
{"help", no_argument, NULL, 'h'},
{"log", required_argument, NULL, 'l'},
{"dry-run", no_argument, NULL, 'n'},
{"version", no_argument, NULL, 'V'},
{ NULL, 0, NULL, 0},
};
- static const char short_options[] = "hl:nV";
+ static const char short_options[] = "ahl:nV";
static const struct opts default_values = {
+ .no_autoboot = opt_no,
.log_file = "/var/log/petitboot/pb-discover.log",
.dry_run = opt_no,
};
@@ -77,6 +81,9 @@ static int opts_parse(struct opts *opts, int argc, char *argv[])
break;
switch (c) {
+ case 'a':
+ opts->no_autoboot = opt_yes;
+ break;
case 'h':
opts->show_help = opt_yes;
break;
OpenPOWER on IntegriCloud