diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-23 15:00:10 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-23 15:00:10 -0700 |
commit | 8588d321201b1713a8b95704e9c6abd39eb80609 (patch) | |
tree | e6b71115f855d42cc9bc51a04afceeba331cf003 | |
parent | 9505ef5bb39875f6090c8ed572391cff415531fd (diff) |
pass through server and path args to daemons
-rwxr-xr-x | scripts/startdaemons.sh | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/scripts/startdaemons.sh b/scripts/startdaemons.sh index 053c4f8ee..4e87694fb 100755 --- a/scripts/startdaemons.sh +++ b/scripts/startdaemons.sh @@ -23,9 +23,19 @@ DIR=`dirname $0` DAEMONS=`php $DIR/getvaliddaemons.php` +ARGS= + +if [ $# -gt 0 ]; then + ARGS="$ARGS -s$1" +fi + +if [ $# -gt 1 ]; then + ARGS="$ARGS -p$2" +fi + for f in $DAEMONS; do echo -n "Starting $f..."; - php $DIR/$f + php $DIR/$f $ARGS echo "DONE." done |