forked from linuxer/Runit-Service-Manager
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d240dbcb39 |
17
rsm
17
rsm
@@ -12,8 +12,9 @@
|
|||||||
# Date: August 29, 2018
|
# Date: August 29, 2018
|
||||||
# License: MIT
|
# License: MIT
|
||||||
|
|
||||||
RSM_VERSION='v1.4.7'
|
RSM_VERSION='v1.4.8'
|
||||||
|
|
||||||
|
export RUNSVDIR=${RUNSVDIR:-/etc/runit/runsvdir}
|
||||||
export SVDIR=${SVDIR:-/run/runit/service/}
|
export SVDIR=${SVDIR:-/run/runit/service/}
|
||||||
export LOGDIR="/var/log/"
|
export LOGDIR="/var/log/"
|
||||||
export RSVDIR="/run/runit/service/"
|
export RSVDIR="/run/runit/service/"
|
||||||
@@ -481,7 +482,12 @@ do_enable_disable() {
|
|||||||
rmsg 1 "failed to enable '$svc'"
|
rmsg 1 "failed to enable '$svc'"
|
||||||
ret=1
|
ret=1
|
||||||
else
|
else
|
||||||
ln -s ${FLDIR}${svc} ${SVDIR}
|
if [ -L "${SVDIR}" ]
|
||||||
|
then
|
||||||
|
ln -s "${FLDIR}${svc}" "${SVDIR}"
|
||||||
|
else
|
||||||
|
ln -s "${FLDIR}${svc}" "${RUNSVDIR}/default" # default runlevel
|
||||||
|
fi
|
||||||
do_status
|
do_status
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
@@ -491,7 +497,12 @@ do_enable_disable() {
|
|||||||
rmsg 1 "failed to disable '$svc'"
|
rmsg 1 "failed to disable '$svc'"
|
||||||
ret=1
|
ret=1
|
||||||
else
|
else
|
||||||
unlink ${SVDIR}${svc}
|
if [ -L "${SVDIR}" ]
|
||||||
|
then
|
||||||
|
unlink "${SVDIR}${svc}"
|
||||||
|
else
|
||||||
|
unlink "${RUNSVDIR}/default/${svc}" # default runlevel
|
||||||
|
fi
|
||||||
do_status
|
do_status
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|||||||
Reference in New Issue
Block a user