You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2014/06/10 15:51:13 UTC

git commit: updated refs/heads/master to c54ce3c

Repository: cloudstack
Updated Branches:
  refs/heads/master 11f532bbe -> c54ce3caf


If for some reason dnsmasq.log does not exist anymore logrotate will create it with nobody as owner. This will prevent dnsmasq deamon from logging to that file.

Signed-off-by: Daan Hoogland <da...@onecht.net>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/c54ce3ca
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/c54ce3ca
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/c54ce3ca

Branch: refs/heads/master
Commit: c54ce3cafbc51febe71fb2a997dbfc8ac9167fb0
Parents: 11f532b
Author: Joris van Lieshout <jv...@schubergphilis.com>
Authored: Wed May 21 17:10:07 2014 +0200
Committer: Daan Hoogland <da...@onecht.net>
Committed: Tue Jun 10 15:51:03 2014 +0200

----------------------------------------------------------------------
 systemvm/patches/debian/config/etc/logrotate.d/dnsmasq | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/c54ce3ca/systemvm/patches/debian/config/etc/logrotate.d/dnsmasq
----------------------------------------------------------------------
diff --git a/systemvm/patches/debian/config/etc/logrotate.d/dnsmasq b/systemvm/patches/debian/config/etc/logrotate.d/dnsmasq
index 838415d3..2654590 100644
--- a/systemvm/patches/debian/config/etc/logrotate.d/dnsmasq
+++ b/systemvm/patches/debian/config/etc/logrotate.d/dnsmasq
@@ -8,6 +8,6 @@
     postrotate
         [ ! -f /var/run/dnsmasq/dnsmasq.pid ] || kill -USR2 `cat /var/run/dnsmasq/dnsmasq.pid`
     endscript
-    create 0640 nobody root
+    create 0640 dnsmasq root
 }