summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Golle2021-08-15 11:56:34 +0000
committerDaniel Golle2021-08-15 14:16:33 +0000
commitff9002fd3e168fe2161e7c6f8697216e2beda5a2 (patch)
treef0f66192f4ae3e819b6fb1d87943d3c2e323b8be
parent16dbc2ab85eef1914ee4b7fd5198eeb1e9709836 (diff)
downloadprocd-ff9002fd3e168fe2161e7c6f8697216e2beda5a2.tar.gz
uxc: fix help output
CLI option 'mounts' is wrongly called 'volumes' in help output. Fix that. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
-rw-r--r--uxc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uxc.c b/uxc.c
index 026fc7e..35036dd 100644
--- a/uxc.c
+++ b/uxc.c
@@ -94,7 +94,7 @@ static int usage(void) {
printf(" [--autostart]\t\t\t\tstart on boot\n");
printf(" [--temp-overlay-size size]\t\tuse tmpfs overlay with {size}\n");
printf(" [--write-overlay-path path]\t\tuse overlay on {path}\n");
- printf(" [--volumes v1,v2,...,vN]\t\trequire volumes to be available\n");
+ printf(" [--mounts v1,v2,...,vN]\t\trequire filesystems to be available\n");
printf("\tstart <conf>\t\t\t\t\tstart container <conf>\n");
printf("\tstate <conf>\t\t\t\t\tget state of container <conf>\n");
printf("\tkill <conf> [<signal>]\t\t\t\tsend signal to container <conf>\n");