# HG changeset patch # User Sylvain Thénault # Date 1277905416 -7200 # Node ID 60880c81e32e32e9fba2b80a2fe2343fd9e1a990 # Parent 8a6c15e2e8b0c7d5b4aee64041b08b1b932f1faf [debian] fix logrotate error introduced by 5806:9ef0e95f4d2b: sh don't want spaces here diff -r 8a6c15e2e8b0 -r 60880c81e32e debian/cubicweb-ctl.logrotate --- a/debian/cubicweb-ctl.logrotate Mon Jun 21 17:48:36 2010 +0200 +++ b/debian/cubicweb-ctl.logrotate Wed Jun 30 15:43:36 2010 +0200 @@ -9,9 +9,9 @@ sharedscripts postrotate if [ -x /usr/sbin/invoke-rc.d ]; then \ - invoke-rc.d cubicweb reload > /dev/null 2> &1; \ + invoke-rc.d cubicweb reload > /dev/null 2>&1; \ else \ - /etc/init.d/cubicweb reload > /dev/null 2> &1; \ + /etc/init.d/cubicweb reload > /dev/null 2>&1; \ fi; \ endscript }