Blame SOURCES/httpd.service

af9b8b
[Unit]
af9b8b
Description=The Apache HTTP Server
af9b8b
After=network.target remote-fs.target nss-lookup.target
af9b8b
af9b8b
[Service]
af9b8b
Type=notify
af9b8b
EnvironmentFile=$sysconfdir/sysconfig/httpd
af9b8b
ExecStart=$sbindir/httpd $OPTIONS -DFOREGROUND
af9b8b
ExecReload=$sbindir/httpd $OPTIONS -k graceful
af9b8b
ExecStop=$sbindir/httpd $OPTIONS -k graceful-stop
af9b8b
# We want systemd to give httpd some time to finish gracefully, but still want
af9b8b
# it to kill httpd after TimeoutStopSec if something went wrong during the
af9b8b
# graceful stop. Normally, Systemd sends SIGTERM signal right after the
af9b8b
# ExecStop, which would kill httpd. We are sending useless SIGCONT here to give
af9b8b
# httpd time to finish.
af9b8b
KillSignal=SIGCONT
af9b8b
PrivateTmp=true
af9b8b
af9b8b
[Install]
af9b8b
WantedBy=multi-user.target