PortValhalla/scripts/Common/Scripts/config.fish

22 lines
504 B
Fish
Raw Normal View History

2024-07-09 00:22:12 +00:00
#!/bin/env fish
function isConfigured -S
set -q "$CONFIG_MODULE"
end
2024-07-09 00:22:12 +00:00
function getConfig -S -a property
2024-07-09 02:00:26 +00:00
source "$(status dirname)/eval-module.fish"
2024-07-09 00:22:12 +00:00
evalModule "$CONFIG_MODULE" "$property" $argv[2..]
end
2024-07-15 10:10:06 +00:00
function getUsers -S
getConfig valhalla.users --apply "builtins.attrNames" --json
end
function isSet -S -a property
not test "$(getConfig "$property" --json)" = "null"
end
2024-07-15 10:10:06 +00:00
function collectionActive -S -a name
[ "$(getConfig "valhalla.software.$name" --json)" = "true" ]
end