diff options
author | Steven Barth <steven@midlink.org> | 2008-04-27 11:04:48 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-04-27 11:04:48 +0000 |
commit | 706da44cf275dc20426a55a4d01ed79026d3eb80 (patch) | |
tree | f0cfced76009f7548a79d211a84fcb171079f028 /contrib/package/ffluci-system-addons/src/run-parts | |
parent | f917c0bb6445794cc94ff895f430db84a9e77ea2 (diff) |
* Reworked Luci-Splash
* Created ffluci-system-addons package for Kamikaze addons
Diffstat (limited to 'contrib/package/ffluci-system-addons/src/run-parts')
-rw-r--r-- | contrib/package/ffluci-system-addons/src/run-parts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/contrib/package/ffluci-system-addons/src/run-parts b/contrib/package/ffluci-system-addons/src/run-parts new file mode 100644 index 0000000000..0f0cbbdf5f --- /dev/null +++ b/contrib/package/ffluci-system-addons/src/run-parts @@ -0,0 +1,18 @@ +#!/bin/sh +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 + +for i in $1/*; do + [ -x $i ] && $i +done + +exit 0
\ No newline at end of file |