2 Commits

Author SHA1 Message Date
b9aad0805e fixed rsm -V 2021-01-12 02:49:28 +02:00
f27c7d4a1b fixed RSM_VERSION to info, line 119 2021-01-12 02:36:42 +02:00

6
rsm
View File

@@ -6,7 +6,7 @@
# Date: August 29, 2018
# License: MIT
RSM_VERSION='v1.3.4'
RSM_VERSION='v1.3.6'
export SVDIR=${SVDIR:-/run/runit/service/}
@@ -116,7 +116,7 @@ usage() {
cat <<EOF
$colormagenta ______ ____ _ _
$colormagenta | | \ \ / ___\ | \/ | $colorgreen Runit Service Manager ($RSV_VERSION)
$colormagenta | | \ \ / ___\ | \/ | $colorgreen Runit Service Manager ($RSM_VERSION)
$colormagenta | |_/ / \____ | || | $colorgreen Source: https://github.com/bahamas10/vsv
$colormagenta | | \ \ \____/ | || | $colorgreen MIT License
@@ -510,7 +510,7 @@ while getopts 'c:d:hltuvV' option; do
t) tree=true; cmd='status';;
u) SVDIR=~/runit/service;;
v) ((verbosity++));;
V) echo "$RSV_VERSION"; exit 0;;
V) echo "$RSM_VERSION"; exit 0;;
*) do_usage=1;;
esac
done