summaryrefslogtreecommitdiff
path: root/puppet/modules/obfsproxy/files/obfsproxy_logrotate
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/obfsproxy/files/obfsproxy_logrotate')
-rw-r--r--puppet/modules/obfsproxy/files/obfsproxy_logrotate14
1 files changed, 14 insertions, 0 deletions
diff --git a/puppet/modules/obfsproxy/files/obfsproxy_logrotate b/puppet/modules/obfsproxy/files/obfsproxy_logrotate
new file mode 100644
index 00000000..e5679d0c
--- /dev/null
+++ b/puppet/modules/obfsproxy/files/obfsproxy_logrotate
@@ -0,0 +1,14 @@
+/var/log/obfsproxy.log {
+ daily
+ missingok
+ rotate 3
+ compress
+ delaycompress
+ notifempty
+ create 600 obfsproxy obfsproxy
+ postrotate
+ if [ -f /var/run/obfsproxy.pid ]; then
+ /etc/init.d/obfsproxy restart > /dev/null
+ fi
+ endscript
+}