mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-04-22 22:56:58 -04:00
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2 f882894a-f735-0410-b71e-b25c423dba1c
16 lines
223 B
Bash
Executable file
16 lines
223 B
Bash
Executable file
#! /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
|