| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #!/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 #
- #----------------------------------------------------------#
- if [ -x "/etc/init.d/$service" ]; then
- /etc/init.d/$service stop >/dev/null 2>&1
- if [ $? -ne 0 ]; then
- exit $E_RESTART
- fi
- fi
- #----------------------------------------------------------#
- # Vesta #
- #----------------------------------------------------------#
- exit
|