14 lines
355 B
Fish
14 lines
355 B
Fish
#!/bin/env fish
|
|
function getConfig -S -a property
|
|
source "$(status dirname)/eval-module.fish"
|
|
evalModule "$CONFIG_MODULE" "$property" $argv[2..]
|
|
end
|
|
|
|
function isSet -S -a property
|
|
not test "$(getConfig "$property" --json)" = "null"
|
|
end
|
|
|
|
function collectionActive -S -a name
|
|
[ "$(getConfig "valhalla.software.$name" --json)" = "true" ]
|
|
end
|