From cd3df842f2231acd96cf38f6dfa640d2635b74ee Mon Sep 17 00:00:00 2001 From: Saksham Srivastava Date: Thu, 25 Sep 2014 15:59:08 +0530 Subject: [PATCH] CLOUDSTACK-7631: Log rotate on VR may fail as /etc/init.d/rsyslog does not anymore support reload option on debian wheezy (cherry picked from commit 3a8c450890299ba02bcc245d962b87da0306b2e1) --- systemvm/patches/debian/config/etc/logrotate.d/rsyslog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systemvm/patches/debian/config/etc/logrotate.d/rsyslog b/systemvm/patches/debian/config/etc/logrotate.d/rsyslog index e18271e5fb1..d2a04ca97fe 100644 --- a/systemvm/patches/debian/config/etc/logrotate.d/rsyslog +++ b/systemvm/patches/debian/config/etc/logrotate.d/rsyslog @@ -7,7 +7,7 @@ delaycompress compress postrotate - invoke-rc.d rsyslog reload > /dev/null + invoke-rc.d rsyslog rotate > /dev/null endscript } @@ -32,6 +32,6 @@ delaycompress sharedscripts postrotate - invoke-rc.d rsyslog reload > /dev/null + invoke-rc.d rsyslog rotate > /dev/null endscript }