svc.sh: fix conditional

This commit is contained in:
mollusk 2021-10-26 20:53:14 -07:00
parent ddbd422e11
commit da2f64b165

2
svc.sh
View File

@ -165,6 +165,6 @@ systemd(){
if [[ "${serviceManager}" = "runit" ]];then
runit "${1}" "${2}"
elif [[ "${serviceManager}" = " systemd" ]];then
elif [[ "${serviceManager}" = "systemd" ]];then
systemd "${1}" "${2}"
fi