summaryrefslogtreecommitdiffhomepage
path: root/pkg/deb
diff options
context:
space:
mode:
authorAndrei Belov <defan@nginx.com>2019-09-25 15:28:20 +0300
committerAndrei Belov <defan@nginx.com>2019-09-25 15:28:20 +0300
commit3644883aa8f87a54fcbca1dfc737e40e12e18a19 (patch)
treedfc7c7c57b82e24b11e92a0ec0d45354fb65fa0b /pkg/deb
parent702ca2b85396d35a0c0e037852854fd9901e2a09 (diff)
downloadunit-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.logrotate15
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
+}