diff options
| author | Daniel Golle | 2021-08-15 11:56:34 +0000 |
|---|---|---|
| committer | Daniel Golle | 2021-08-15 14:16:33 +0000 |
| commit | ff9002fd3e168fe2161e7c6f8697216e2beda5a2 (patch) | |
| tree | f0f66192f4ae3e819b6fb1d87943d3c2e323b8be | |
| parent | 16dbc2ab85eef1914ee4b7fd5198eeb1e9709836 (diff) | |
| download | procd-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |