# HG changeset patch # User Sylvain Thénault # Date 1277905806 -7200 # Node ID 4cbcfed90905c15e1ee769cdbc3cb63431c1c686 # Parent 53cbdc5e04268ba9e59a1a8f4b816068ce3327c7 [debian] fix logrotate error introduced by 5806:9ef0e95f4d2b: sh don't want spaces here diff -r 53cbdc5e0426 -r 4cbcfed90905 debian/cubicweb-ctl.logrotate --- a/debian/cubicweb-ctl.logrotate Wed Jun 30 12:27:51 2010 +0200 +++ b/debian/cubicweb-ctl.logrotate Wed Jun 30 15:50:06 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 }