Commit 13176b37 authored by Vitaly Lipatov's avatar Vitaly Lipatov

commit packed files

parent da836481
...@@ -304,7 +304,7 @@ assure_exists() ...@@ -304,7 +304,7 @@ assure_exists()
eget() eget()
{ {
$PROGDIR/tools-eget "$@" $SHAREDIR/tools-eget "$@"
} }
get_package_type() get_package_type()
...@@ -398,7 +398,7 @@ case $DISTRNAME in ...@@ -398,7 +398,7 @@ case $DISTRNAME in
;; ;;
Fedora|LinuxXP|ASPLinux|CentOS|RHEL|Scientific) Fedora|LinuxXP|ASPLinux|CentOS|RHEL|Scientific)
CMD="yum-rpm" CMD="yum-rpm"
#which dnf 2>/dev/null >/dev/null && CMD=dnf-rpm which dnf 2>/dev/null >/dev/null && test -d /var/lib/dnf/yumdb && CMD=dnf-rpm
;; ;;
Slackware) Slackware)
CMD="slackpkg" CMD="slackpkg"
...@@ -574,6 +574,30 @@ serv_list_startup() ...@@ -574,6 +574,30 @@ serv_list_startup()
esac esac
} }
# File bin/serv-restart:
serv_restart()
{
local SERVICE="$1"
shift
case $SERVICETYPE in
service-chkconfig|service-upstart)
sudocmd service $SERVICE restart "$@"
;;
service-initd|service-update)
sudocmd $INITDIR/$SERVICE restart "$@"
;;
systemd)
sudocmd systemctl restart $SERVICE "$@"
;;
*)
fatal "Have no suitable command for $SERVICETYPE"
;;
esac
}
# File bin/serv-start: # File bin/serv-start:
serv_start() serv_start()
...@@ -1147,7 +1171,7 @@ $(get_help HELPOPT) ...@@ -1147,7 +1171,7 @@ $(get_help HELPOPT)
print_version() print_version()
{ {
echo "Service manager version 1.5.10" echo "Service manager version 1.5.15"
echo "Running on $($DISTRVENDOR)" echo "Running on $($DISTRVENDOR)"
echo "Copyright (c) Etersoft 2012, 2013" echo "Copyright (c) Etersoft 2012, 2013"
echo "This program may be freely redistributed under the terms of the GNU AGPLv3." echo "This program may be freely redistributed under the terms of the GNU AGPLv3."
...@@ -1182,7 +1206,9 @@ check_command() ...@@ -1182,7 +1206,9 @@ check_command()
serv_cmd=usage serv_cmd=usage
withoutservicename=1 withoutservicename=1
;; ;;
#restart) # HELPCMD: restart service restart) # HELPCMD: restart service
serv_cmd=restart
;;
#reload) # HELPCMD: reload service #reload) # HELPCMD: reload service
start) # HELPCMD: start service start) # HELPCMD: start service
serv_cmd=start serv_cmd=start
......
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