diff options
author | Andrei Belov <defan@nginx.com> | 2019-09-25 15:28:20 +0300 |
---|---|---|
committer | Andrei Belov <defan@nginx.com> | 2019-09-25 15:28:20 +0300 |
commit | 3644883aa8f87a54fcbca1dfc737e40e12e18a19 (patch) | |
tree | dfc7c7c57b82e24b11e92a0ec0d45354fb65fa0b /pkg/deb | |
parent | 702ca2b85396d35a0c0e037852854fd9901e2a09 (diff) | |
download | unit-3644883aa8f87a54fcbca1dfc737e40e12e18a19.tar.gz unit-3644883aa8f87a54fcbca1dfc737e40e12e18a19.tar.bz2 |
Packages: added logrotate configuration for Debian packages.
While here, made logrotate configuration consistent between rpm and deb.
This closes #323 issue on GitHub.
Diffstat (limited to 'pkg/deb')
-rw-r--r-- | pkg/deb/debian/unit.logrotate | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/deb/debian/unit.logrotate b/pkg/deb/debian/unit.logrotate new file mode 100644 index 00000000..416947ca --- /dev/null +++ b/pkg/deb/debian/unit.logrotate @@ -0,0 +1,15 @@ +/var/log/unit.log { + daily + missingok + rotate 7 + compress + delaycompress + nocreate + notifempty + su root root + postrotate + if [ -f /var/run/unit.pid ]; then + /bin/kill -SIGUSR1 `cat /var/run/unit.pid` + fi + endscript +} |