jitty-scripts/svc.sh

102 lines
2.4 KiB
Bash
Raw Normal View History

#!/bin/sh
2015-08-08 21:04:55 -07:00
# SVC - SV Commander - frontend for the sv command
2015-08-08 21:04:55 -07:00
###############################################################################################
## Copyright (c) 2015 - 2020, Justin Moore
2015-08-08 21:04:55 -07:00
##
## Permission to use, copy, modify, and/or distribute this software
## for any purpose with or without fee is hereby granted,
2015-08-08 21:04:55 -07:00
## provided that the above copyright notice and this permission notice appear in all copies.
##
## THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
## WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
## AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
## OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
## WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
2015-08-08 21:04:55 -07:00
## ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
##############################################################################################
2019-11-30 23:17:32 -07:00
2019-11-10 06:18:50 -07:00
RED='\033[0;31m'
LRED="\033[1;31m"
BLUE="\033[0;34m"
LBLUE="\033[1;34m"
GREEN="\033[0;32m"
LGREEN="\033[1;32m"
YELLOW="\033[1;33m"
CYAN="\033[0;36m"
LCYAN="\033[1;36m"
PURPLE="\033[0;35m"
LPURPLE="\033[1;35m"
BWHITE="\e[1m"
NC='\033[0m' # No Color
2015-08-08 21:04:55 -07:00
2019-11-30 23:17:32 -07:00
help(){
printf """
svc - Service Commander - frontend for the sv command
2020-02-17 21:41:18 -07:00
Usage: svc enable | disable | enabled | list | up | start | restart | stop <service>
2019-11-30 23:17:32 -07:00
For detailed help, see the commands below:
start Start an enabled service
restart Restart a enabled service
stop Stop an enabled service
enable Symenlink directory/file to /var/service
2020-02-17 21:41:18 -07:00
disable Remove symlink from /var/service
enabled View synlinked paths of all services
2020-02-17 21:41:18 -07:00
ls List enabled and disabled service files
up Show status of running services
2019-11-30 23:17:32 -07:00
"""
}
2015-08-08 21:04:55 -07:00
case $1 in
enable | --enable-service )
2019-11-10 06:20:16 -07:00
ln -v -s /etc/sv/"${2}" /var/service/
2020-02-17 21:41:18 -07:00
;;
2015-08-08 21:04:55 -07:00
2020-02-17 21:41:18 -07:00
disable | --remove-service )
2019-11-10 06:20:16 -07:00
rm -v /var/service/"${2}"
2020-02-17 21:41:18 -07:00
;;
enabled | --enabled-services )
cd /etc/sv && find -xtype l -exec ls -l {} \;
;;
list | ls | --list )
echo
echo "${LGREEN}Available Services (/etc/sv/):${NC}\n"
2020-02-17 21:41:18 -07:00
ls /etc/sv
echo
echo "${LCYAN}Enabled Services (/var/service):${NC}\n"
2020-02-17 21:41:18 -07:00
echo
ls /var/service
echo
;;
up )
sv s /var/service/*
;;
start )
sv start "${2}"
;;
restart )
sv restart "${2}"
;;
stop )
sv stop "${2}"
;;
*)
help
;;
2015-08-08 21:04:55 -07:00
esac