914af2b444
Tue Feb 27 2001 Preston Brown <pbrown@redhat.com> - noreplace crontab file; use tmppath Wed Jan 31 2001 Bill Nottingham <notting@redhat.com> - don't process ,v files (#15968)
39 lines
749 B
Bash
Executable File
39 lines
749 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# run-parts - concept taken from Debian
|
|
|
|
# keep going when something fails
|
|
set +e
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo "Usage: run-parts <dir>"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -d $1 ]; then
|
|
echo "Not a directory: $1"
|
|
exit 1
|
|
fi
|
|
|
|
# Ignore *~ and *, scripts
|
|
for i in $1/*[^~,] ; do
|
|
[ -d $i ] && continue
|
|
# Don't run *.{rpmsave,rpmorig,rpmnew,swp} scripts
|
|
[ "${i%.rpmsave}" != "${i}" ] && continue
|
|
[ "${i%.rpmorig}" != "${i}" ] && continue
|
|
[ "${i%.rpmnew}" != "${i}" ] && continue
|
|
[ "${i%.swp}" != "${i}" ] && continue
|
|
[ "${i%,v}" != "${i}" ] && continue
|
|
|
|
if [ -x $i ]; then
|
|
$i 2>&1 | awk -v "progname=$i" \
|
|
'progname {
|
|
print progname ":\n"
|
|
progname="";
|
|
}
|
|
{ print; }'
|
|
fi
|
|
done
|
|
|
|
exit 0
|