Server IP : 85.214.239.14 / Your IP : 3.133.129.110 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/root/proc/2/root/proc/2/cwd/etc/init/ |
Upload File : |
# xinetd - the extended Internet services daemon description "xinetd daemon" start on runlevel [2345] stop on runlevel [!2345] ## because signal QUIT is sent in pre-stop, respawn cannot be used. ## (LP: #605007) #respawn pre-start script test -x /usr/sbin/xinetd || { stop; exit 0; } end script env PIDFILE=/var/run/xinetd.pid script INETD_COMPAT=Yes XINETD_OPTS="-stayalive" # per upstart convention, options should be set in the upstart job itself. # However, to be friendly, source and respect old defaults file. [ ! -f /etc/default/xinetd ] || . /etc/default/xinetd case "$INETD_COMPAT" in [Yy]*) XINETD_OPTS="$XINETD_OPTS -inetd_compat" if perl -MSocket -e 'exit (!socket($sock, AF_INET6, SOCK_STREAM, 0))'; then XINETD_OPTS="$XINETD_OPTS -inetd_ipv6" fi ;; esac checkportmap () { if grep "^[^ *#]" /etc/xinetd.conf | grep -q 'rpc/'; then if ! rpcinfo -u localhost portmapper >/dev/null 2>&1; then echo echo "WARNING: portmapper inactive - RPC services unavailable!" echo " Commenting out or removing the RPC services from" echo " the /etc/xinetd.conf file will remove this message." echo fi fi } checkportmap exec /usr/sbin/xinetd -dontfork -pidfile "$PIDFILE" $XINETD_OPTS end script pre-stop script xinetd_pid=$(status | awk '/stop\/pre-stop/ { print $NF }') [ -n "${xinetd_pid}" ] || exit 0 kill -QUIT "${xinetd_pid}" end script