diff options
author | hauke <hauke> | 2007-05-07 14:14:06 +0000 |
---|---|---|
committer | hauke <hauke> | 2007-05-07 14:14:06 +0000 |
commit | 546cabfab57981c7469bb2a82a46898afc6efb8c (patch) | |
tree | 74a0c8da8fb805d2cb3651fa2d579efa1bf5f7b0 /sysutils/radmind/patches | |
parent | e9ad015c0c9c8677c2053b7c44b60b71cd4f4698 (diff) | |
download | pkgsrc-546cabfab57981c7469bb2a82a46898afc6efb8c.tar.gz |
Maintainer update to Radmind 1.8.0
Major changes from 1.7.2:
- Added reporting capabilities
Clients will automatically report to the serve the success or
failures
of ktcheck and lapply. Also added a new tool "repo" that will log
custom messages to the radmind server.
Other Changes:
- Fixed bug in daemon that caused "success" or "no error" to be logged
instead of actual error message. [BUG #1660749]
Thanks to Gabrielle Singleton for reporting the problem.
- ra.sh uses more portable find options. [ Bug #1385630 ]
Thanks Sean Sweda for the patch.
- fsdiff displays the command file name when reporting command
file line errors. [ Feature #1592739 ]
- Makefile.in using POSIX sub-make methodology [ Bug #1641044 ]
- Fixed build problem for Suse 10. [ Bug #1677170 ]
Thanks cdr3 for reporting the problem.
- ktcheck exits on all non 2xx server responses to avoid all
cascading error messages
- Added optional path to ra.sh for update & create
- Including configure.ac in source distribution
- ra.sh auto now does pre/post apply.
Thanks Sean Sweda for the patch.
- Updated copyright information
- Cleaned up formatting of STAT SPEC
- Cleaned up server's debug information
Diffstat (limited to 'sysutils/radmind/patches')
-rw-r--r-- | sysutils/radmind/patches/patch-ab | 36 |
1 files changed, 9 insertions, 27 deletions
diff --git a/sysutils/radmind/patches/patch-ab b/sysutils/radmind/patches/patch-ab index 2c1a9630e8c..47667760537 100644 --- a/sysutils/radmind/patches/patch-ab +++ b/sysutils/radmind/patches/patch-ab @@ -1,17 +1,17 @@ -$NetBSD: patch-ab,v 1.5 2006/10/05 02:49:30 rillig Exp $ +$NetBSD: patch-ab,v 1.6 2007/05/07 14:14:06 hauke Exp $ ---- ra.sh.orig 2006-07-19 22:17:51.000000000 +0200 -+++ ra.sh 2006-10-05 04:45:56.000000000 +0200 -@@ -25,7 +25,7 @@ SERVER="_RADMIND_HOST" - TLSLEVEL="_RADMIND_AUTHLEVEL" +--- ra.sh.orig 2007-02-27 16:20:09.000000000 +0100 ++++ ra.sh +@@ -29,7 +29,7 @@ TLSLEVEL="_RADMIND_AUTHLEVEL" EDITOR=${EDITOR:-vi} USER=${SUDO_USER:-$USER} + TMPDIR="${TMPDIR:=/tmp}" -DEFAULTS="/etc/defaults/radmind" +DEFAULTS="_PKG_SYSCONFDIR/radmind.defaults" FSDIFFROOT="." FLAG="_RADMIND_DIR/client/.RadmindRunning" CHECKEDOUT="_RADMIND_DIR/client/.CheckedOut" -@@ -35,7 +35,7 @@ VERSION=_RADMIND_VERSION +@@ -39,7 +39,7 @@ VERSION=_RADMIND_VERSION PREAPPLY="_RADMIND_PREAPPLY" POSTAPPLY="_RADMIND_POSTAPPLY" @@ -20,9 +20,9 @@ $NetBSD: patch-ab,v 1.5 2006/10/05 02:49:30 rillig Exp $ RETRY=10 MKTEMP="_RADMIND_MKTEMP" -@@ -51,14 +51,6 @@ fi - LTMP="${TMPDIR}/lapply.out" - FTMP="${TMPDIR}/fsdiff.out" +@@ -55,14 +55,6 @@ fi + LTMP="${RASHTMP}/lapply.out" + FTMP="${RASHTMP}/fsdiff.out" -# different systems use different default dirs -if [ ! -f "${DEFAULTS}" ]; then @@ -35,21 +35,3 @@ $NetBSD: patch-ab,v 1.5 2006/10/05 02:49:30 rillig Exp $ Yn() { echo -n "$*" "[Yn] " read ans -@@ -89,7 +81,7 @@ cleanup() { - - dopreapply() { - if [ -d ${PREAPPLY} ]; then -- SCRIPTS=`find ${PREAPPLY} -perm +u+x \! -type d | sort` -+ SCRIPTS=`find ${PREAPPLY} -perm -u+x \! -type d | sort` - if [ "${SCRIPTS}" ]; then - for script in ${SCRIPTS}; do - ${script} "$1" -@@ -100,7 +92,7 @@ dopreapply() { - - dopostapply() { - if [ -d ${POSTAPPLY} ]; then -- SCRIPTS=`find ${POSTAPPLY} -perm +u+x \! -type d | sort` -+ SCRIPTS=`find ${POSTAPPLY} -perm -u+x \! -type d | sort` - if [ "${SCRIPTS}" ]; then - for script in ${SCRIPTS}; do - ${script} "$1" |