From b0d26bd77dfc9e8d4fd7238e50f8c06d4d0aa518 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 12 Nov 2012 08:44:02 +1100 Subject: [PATCH 1/2] ntp_signd: move socket directory to var/lib not var/run for permissions change With the next patch, this becomes a socket directory on which we must maintain administrator-specified permissions we will need to move it away from directories that wipe at boot. This means the ntp.conf will need to change from (eg) ntpsigndsocket /usr/local/samba/var/run/ntp_signd/ to ntpsigndsocket /usr/local/samba/var/lib/ntp_signd/ Andrew Bartlett --- dynconfig/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dynconfig/wscript b/dynconfig/wscript index 44e8f19..d1c7a00 100755 --- a/dynconfig/wscript +++ b/dynconfig/wscript @@ -226,8 +226,8 @@ dynconfig = { 'DELAY': True, }, 'NTP_SIGND_SOCKET_DIR' : { - 'STD-PATH': '${SOCKET_DIR}/ntp_signd', - 'FHS-PATH': '${SOCKET_DIR}/ntp_signd', + 'STD-PATH': '${PRIVILEGED_SOCKET_DIR}/ntp_signd', + 'FHS-PATH': '${PRIVILEGED_SOCKET_DIR}/ntp_signd', 'DELAY': True, }, 'NCALRPCDIR' : { -- 1.7.11.7