diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-03-19 02:27:20 +0000 |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-03-19 02:27:20 +0000 |
commit | 26bfac750d281fdc6d1bf27a0606570aabeaa8c5 (patch) | |
tree | 6e749bff28e2e53020b2047c42fc83b290856102 /subst.sh | |
parent | 746599559541df1e598a2fcb7a310c5b15b153a1 (diff) | |
download | monitoring-plugins-26bfac750d281fdc6d1bf27a0606570aabeaa8c5.tar.gz |
these were replaced by dist-hook
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@437 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'subst.sh')
-rwxr-xr-x | subst.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/subst.sh b/subst.sh deleted file mode 100755 index 25606d30..00000000 --- a/subst.sh +++ /dev/null @@ -1,16 +0,0 @@ -#! /bin/sh - -if [ -x /bin/mktemp ]; then - TEMP=`/bin/mktemp $1.$$.XXXXXX` || exit 1 -else - TEMP=$1.$$.`date +"%S"` - umask 177 - touch $TEMP -fi - -sed -f subst $1 > $TEMP - -chmod +x $TEMP -touch -r $1 $TEMP -cp -p $TEMP $1 -rm $TEMP |