Commit e0f6e354 authored by Vitaly Lipatov's avatar Vitaly Lipatov

serv: more verbose on

parent bcb434ab
...@@ -26,7 +26,7 @@ serv_disable() ...@@ -26,7 +26,7 @@ serv_disable()
local SERVICE="$1" local SERVICE="$1"
is_service_running $1 && { serv_stop $1 || return ; } is_service_running $1 && { serv_stop $1 || return ; }
is_service_autostart $1 || { echo "Service $1 already disabled for startup" && return ; } is_service_autostart $1 || { info "Service $1 already disabled for startup" && return ; }
case $SERVICETYPE in case $SERVICETYPE in
service-chkconfig|service-upstart) service-chkconfig|service-upstart)
......
...@@ -25,7 +25,7 @@ __serv_enable() ...@@ -25,7 +25,7 @@ __serv_enable()
{ {
local SERVICE="$1" local SERVICE="$1"
is_service_autostart $1 && echo "Service $1 already enabled for startup" && return is_service_autostart $1 && info "Service $1 already enabled for startup" && return
case $SERVICETYPE in case $SERVICETYPE in
service-chkconfig) service-chkconfig)
...@@ -57,5 +57,6 @@ serv_enable() ...@@ -57,5 +57,6 @@ serv_enable()
{ {
__serv_enable "$1" || return __serv_enable "$1" || return
# start if need # start if need
is_service_running $1 || serv_start $1 || return is_service_running $1 && info "Service $1 is already running" && return
serv_start $1
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment