Code

Tool to pull newer coreutil libs into nagiosplug's lib directory
authorTon Voon <tonvoon@users.sourceforge.net>
Fri, 12 Nov 2004 00:51:13 +0000 (00:51 +0000)
committerTon Voon <tonvoon@users.sourceforge.net>
Fri, 12 Nov 2004 00:51:13 +0000 (00:51 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@896 f882894a-f735-0410-b71e-b25c423dba1c

tools/update_coreutils [new file with mode: 0755]

diff --git a/tools/update_coreutils b/tools/update_coreutils
new file mode 100755 (executable)
index 0000000..5e195a0
--- /dev/null
@@ -0,0 +1,31 @@
+#!/bin/bash
+# Quick script to copy coreutil files into Nagios area
+# Pass $1 as top level of coreutils source dir
+# Expects to be run in the lib directory
+
+function die { echo $1; exit 1; }
+
+function copy_if_newer { [[ $1 -nt $2 ]] && cp $1 $2; }
+
+coreutils_dir=$1
+
+[[ -z $coreutils_dir ]] && die "Please specify coreutils directory"
+
+cwd=`pwd`
+
+[[ ${cwd##*/} != "lib" ]] && die "Must be run in lib directory"
+
+# Get list of files from EXTRA_DIST in Makefile.am
+# Need \\\ because the perl needs \\ but one is escaped
+files="`perl -ne '$a=1 if s/^EXTRA_DIST\s*=\s*|libnagiosplug_a_SOURCES\s*=\s*//; $a=0 if /^\s*$/; if ($a==1) {s/\\\//; print $_}' Makefile.am`"
+
+for i in $files ; do
+       if [[ -e $coreutils_dir/lib/$i ]] ; then
+               copy_if_newer $coreutils_dir/lib/$i ./$i
+       elif [[ -e $coreutils_dir/m4/$i ]] ; then
+               copy_if_newer $coreutils_dir/m4/$i ./$i
+       else
+               echo "Not found: $i"
+       fi
+done
+