dist: Set ExecReload to send SIGUSR1+SIGUSR2 to process

It is not recommended by systemd.service(5) to use signals in
ExecReload, but we do not have a better solution now.
This commit is contained in:
fox.cpp 2020-01-02 16:57:55 +03:00
parent 126eb2e33f
commit ed9e2daed7
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
2 changed files with 6 additions and 0 deletions

View file

@ -74,3 +74,6 @@ Restart=on-failure
RestartPreventExitStatus=2 RestartPreventExitStatus=2
ExecStart=/usr/bin/maddy ExecStart=/usr/bin/maddy
ExecReload=/bin/kill -USR1 $MAINPID
ExecReload=/bin/kill -USR2 $MAINPID

View file

@ -68,3 +68,6 @@ Restart=on-failure
RestartPreventExitStatus=2 RestartPreventExitStatus=2
ExecStart=/usr/bin/maddy -config /etc/maddy/%i.conf ExecStart=/usr/bin/maddy -config /etc/maddy/%i.conf
ExecReload=/bin/kill -USR1 $MAINPID
ExecReload=/bin/kill -USR2 $MAINPID