myvesta/bin/v-stop-service
2014-05-16 21:41:50 +03:00

41 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
# info: stop service
# options: service
#
# The function stops system service.
#----------------------------------------------------------#
# Variable&Function #
#----------------------------------------------------------#
# Argument defenition
service=$1
# Includes
source $VESTA/func/main.sh
#----------------------------------------------------------#
# Verifications #
#----------------------------------------------------------#
check_args '1' "$#" 'SERVICE'
#----------------------------------------------------------#
# Action #
#----------------------------------------------------------#
service $service stop >/dev/null 2>&1
if [ $? -ne 0 ]; then
exit $E_RESTART
fi
#----------------------------------------------------------#
# Vesta #
#----------------------------------------------------------#
exit