Browse Source

install_easy.sh : sysv init check script exists in /etc/init.d

pull/81/head
bol-van 3 years ago
parent
commit
fbd30ba5e1
  1. 11
      install_easy.sh

11
install_easy.sh

@ -977,11 +977,12 @@ install_openrc_init()
service_start_sysv()
{
echo \* starting zapret service
"$INIT_SCRIPT" start || {
echo could not start zapret service
exitp 30
[ -x "$INIT_SCRIPT" ] && {
echo \* starting zapret service
"$INIT_SCRIPT" start || {
echo could not start zapret service
exitp 30
}
}
}

Loading…
Cancel
Save