disko cli: allow mode to be disko

This commit is contained in:
lassulus 2023-06-04 13:09:11 +02:00
parent 40f3218b14
commit ca51cc9be9

6
disko
View file

@ -18,7 +18,7 @@ or $0 [options] --flake github:somebody/somewhere
Options: Options:
* -m, --mode mode * -m, --mode mode
set the mode, either create or mount set the mode, either create, mount, zap_create_mount or disko
* -f, --flake uri * -f, --flake uri
fetch the disko config relative to this flake's root fetch the disko config relative to this flake's root
* --arg name value * --arg name value
@ -93,8 +93,8 @@ while [[ $# -gt 0 ]]; do
shift shift
done done
if ! { [[ $mode = "create" ]] || [[ $mode = "mount" ]] || [[ $mode = "zap_create_mount" ]]; }; then if ! { [[ $mode = "create" ]] || [[ $mode = "mount" ]] || [[ $mode = "zap_create_mount" ]] || [[ $mode = "disko" ]]; }; then
abort "mode must be either create, mount or zap_create_mount" abort "mode must be either create, mount, zap_create_mount or disko"
fi fi
if [[ -n "${flake+x}" ]]; then if [[ -n "${flake+x}" ]]; then