diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-11-12 08:44:02 +1100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-11-12 10:50:03 +0100 |
commit | 77bd7ea1664514a8988941d454fc621c7f0943d1 (patch) | |
tree | 47a55ee8e4c463a250754e860d0d4bf7be6083d4 /dynconfig | |
parent | e0ab14f52a52c8317473b4c4cd3cf50265e1f9e4 (diff) | |
download | samba-77bd7ea1664514a8988941d454fc621c7f0943d1.tar.gz samba-77bd7ea1664514a8988941d454fc621c7f0943d1.tar.bz2 samba-77bd7ea1664514a8988941d454fc621c7f0943d1.zip |
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
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'dynconfig')
-rwxr-xr-x | dynconfig/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dynconfig/wscript b/dynconfig/wscript index 44e8f19f73..d1c7a00f77 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' : { |