Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
250654bfdb
|
|||
edbabda2df
|
|||
9d13a0576b
|
|||
27bcdec74f
|
|||
6815946574
|
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
- Terminal Commands are exactly the same as sv, but produces a beautified layout.
|
- Terminal Commands are exactly the same as sv, but produces a beautified layout.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Manage and view runit services.
|
## Manage and view runit services.
|
||||||
|
|
||||||
|
10
rsm
10
rsm
@@ -2,12 +2,14 @@
|
|||||||
#
|
#
|
||||||
# Artix Linux service manager (runit)
|
# Artix Linux service manager (runit)
|
||||||
# Forked and further developed, by: linuxer <linuxer@artixlinux.org>
|
# Forked and further developed, by: linuxer <linuxer@artixlinux.org>
|
||||||
|
# Fork Date: August 15, 2020 as rsv
|
||||||
|
# Renamed and further developed as rsm from: January 10, 2021
|
||||||
#
|
#
|
||||||
# Original Author (vsv): Dave Eddy <dave@daveeddy.com>
|
# Original Author (vsv): Dave Eddy <dave@daveeddy.com>
|
||||||
# Date: August 29, 2018
|
# Date: August 29, 2018
|
||||||
# License: MIT
|
# License: MIT
|
||||||
|
|
||||||
RSM_VERSION='v1.3.8'
|
RSM_VERSION='v1.3.9'
|
||||||
|
|
||||||
export SVDIR=${SVDIR:-/run/runit/service/}
|
export SVDIR=${SVDIR:-/run/runit/service/}
|
||||||
export FLDIR=${FLDIR:-/etc/runit/sv/}
|
export FLDIR=${FLDIR:-/etc/runit/sv/}
|
||||||
@@ -119,7 +121,7 @@ usage() {
|
|||||||
|
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
$colormagenta ______ ____ __ __
|
$colormagenta ______ ____ __ __
|
||||||
$colormagenta | | \ \ / ___\ | \/ | $colorgreen Runit Service Manager ($RSM_VERSION)
|
$colormagenta | | \ \ / ___\ | \/ | $colorgreen Runit Service Manager for Artix Linux ($RSM_VERSION)
|
||||||
$colormagenta | |_/ / \____ | || | $colorgreen Source: https://gitea.artixlinux.org/linuxer/Runit-Service-Manager
|
$colormagenta | |_/ / \____ | || | $colorgreen Source: https://gitea.artixlinux.org/linuxer/Runit-Service-Manager
|
||||||
$colormagenta | | \ \ \____/ | || | $colorgreen MIT License
|
$colormagenta | | \ \ \____/ | || | $colorgreen MIT License
|
||||||
|
|
||||||
@@ -476,7 +478,7 @@ do_enable_disable() {
|
|||||||
rmsg 1 "failed to disable '$svc'"
|
rmsg 1 "failed to disable '$svc'"
|
||||||
ret=1
|
ret=1
|
||||||
else
|
else
|
||||||
unlink ${SVDIR}$svc
|
unlink ${SVDIR}${svc}
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
@@ -508,7 +510,7 @@ colors_set=false
|
|||||||
tree=false
|
tree=false
|
||||||
log=false
|
log=false
|
||||||
do_usage=-1
|
do_usage=-1
|
||||||
verbosity=0
|
verbosity=1
|
||||||
while getopts 'c:d:hltuvV' option; do
|
while getopts 'c:d:hltuvV' option; do
|
||||||
case "$option" in
|
case "$option" in
|
||||||
c) setcolors "$OPTARG"; colors_set=true;;
|
c) setcolors "$OPTARG"; colors_set=true;;
|
||||||
|
Reference in New Issue
Block a user