mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
systemd: minor activation output fix
This commit is contained in:
parent
a578ea9527
commit
4efbf0e090
1 changed files with 4 additions and 4 deletions
|
@ -103,20 +103,20 @@ in
|
||||||
local sugg=""
|
local sugg=""
|
||||||
|
|
||||||
if [[ -n "''${toRestart[@]}" ]] ; then
|
if [[ -n "''${toRestart[@]}" ]] ; then
|
||||||
sugg="$sugg\nsystemctl --user restart ''${toRestart[@]}"
|
sugg="''${sugg}systemctl --user restart ''${toRestart[@]}\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -n "''${toStop[@]}" ]] ; then
|
if [[ -n "''${toStop[@]}" ]] ; then
|
||||||
sugg="$sugg\nsystemctl --user stop ''${toStop[@]}"
|
sugg="''${sugg}systemctl --user stop ''${toStop[@]}\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -n "''${toStart[@]}" ]] ; then
|
if [[ -n "''${toStart[@]}" ]] ; then
|
||||||
sugg="$sugg\nsystemctl --user start ''${toStart[@]}"
|
sugg="''${sugg}systemctl --user start ''${toStart[@]}\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -n "$sugg" ]] ; then
|
if [[ -n "$sugg" ]] ; then
|
||||||
echo "Suggested commands:"
|
echo "Suggested commands:"
|
||||||
echo -e "$sugg"
|
echo -n -e "$sugg"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue