2 Commits

2 changed files with 45 additions and 31 deletions

View File

@@ -4,7 +4,7 @@
- Terminal Commands are exactly the same as sv, but produces a beautified layout.
![](https://imgur.com/cpRWBo1.png)
![](https://imgur.com/S9zdEIU.png)
## Manage and view runit services.

22
rsm
View File

@@ -9,7 +9,7 @@
# Date: August 29, 2018
# License: MIT
RSM_VERSION='v1.4.3'
RSM_VERSION='v1.4.5'
export SVDIR=${SVDIR:-/run/runit/service/}
export LOGDIR="/var/log/"
@@ -138,7 +138,7 @@ $progname [-u] [-d <dir>] [-h] [-t] [SUBCOMMAND] [...]
${coloryellow}OPTIONS:${colorgreen}
${colorgreen}-c <yes|no|auto> $cr Enable/disable color output, defaults to auto
${colorgreen}-d <dir> $cr Directory to look into, defaults to env SVDIR or /var/service if unset
${colorgreen}-d <dir> $cr Directory to look into, defaults to env SVDIR or /run/runit/service is unset
${colorgreen}-h $cr Print this message and exit
${colorgreen}-l $cr Show log processes, this is a shortcut for 'status -l'
${colorgreen}-t $cr Tree view, this is a shortcut for 'status -t'
@@ -391,7 +391,9 @@ do_status() {
fi
if [[ -n $filter && $svc != *"$filter"* ]]; then
verbose "filtering out '$svc' because match '$filter'"
if [[ $verbosity != 1 ]]; then
verbose "filtering out '$svc' because it does not match '$filter'"
fi
continue
fi
@@ -502,7 +504,6 @@ do_enable_disable() {
# show logs
do_show_logs() {
monitors_array=($(xrandr -q))
local cmd=$1
local svc
local ret=0
@@ -520,6 +521,8 @@ do_show_logs() {
fi
done
if [[ -f "${RSVDIR}${cmd}" ]]; then
if ! [[ -d ${RSVDIR}${cmd} ]]; then
printf "\n%20s\n" "${colorgreen}The following log files found:"
local logs_files_array=($(ls /var/log/$cmd/*.*))
@@ -537,6 +540,11 @@ do_show_logs() {
tail -n 10 ${LOGDIR}${cmd}/*.* | more
printf "\n"
fi
fi
if ! [[ -f "${RSVDIR}${cmd}" ]]; then
printf "\n%20s\n" "${colorred}The service's ${cmd} log files have not been found or do not exist"
fi
rmsg "$ret" "[$progname $cmd $*], exit code: $ret"
return "$ret"
@@ -561,6 +569,7 @@ do_show_err_logs() {
fi
done
if [[ -f "${RSVDIR}${cmd}" ]]; then
if ! [[ -d ${RSVDIR}${cmd} ]]; then
printf "\n%20s\n" "${colorred}The following error log files found:"
local logs_files_array=($(ls /var/log/$cmd/*error*.*))
@@ -578,6 +587,11 @@ do_show_err_logs() {
tail -n 10 ${LOGDIR}${cmd}/*error*.* | more
printf "\n"
fi
fi
if ! [[ -f "${RSVDIR}${cmd}" ]]; then
printf "\n%20s\n" "${colorred}The service's ${cmd} error log files have not been found or do not exist"
fi
rmsg "$ret" "[$progname $cmd $*], exit code: $ret"
return "$ret"