systemd: fix systemctl command
The command's path should be taken from the configuration, not be assumed to be in `PATH`.
This commit is contained in:
parent
6764c26954
commit
2ff09158f3
|
@ -121,13 +121,13 @@ in
|
|||
home.activation.reloadSystemD = dagEntryAfter ["linkGeneration"] ''
|
||||
function isStartable() {
|
||||
local service="$1"
|
||||
[[ $(systemctl --user show -p RefuseManualStart "$service") == *=no ]]
|
||||
[[ $(${cfg.systemctlPath} --user show -p RefuseManualStart "$service") == *=no ]]
|
||||
}
|
||||
|
||||
function isStoppable() {
|
||||
if [[ -v oldGenPath ]] ; then
|
||||
local service="$1"
|
||||
[[ $(systemctl --user show -p RefuseManualStop "$service") == *=no ]]
|
||||
[[ $(${cfg.systemctlPath} --user show -p RefuseManualStop "$service") == *=no ]]
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue