diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-24 19:35:19 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-24 19:35:19 -0700 |
commit | 6038420a69096854e386b8e9dcdc5993d7e9af8f (patch) | |
tree | dbcc9af8b298da271326cc9da44647303b2602eb /scripts | |
parent | becfd6b3b5da57298137c3349efbd49fe347ccfd (diff) |
add i argument for all daemons
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/startdaemons.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/startdaemons.sh b/scripts/startdaemons.sh index a44362b57..8b7451cd7 100755 --- a/scripts/startdaemons.sh +++ b/scripts/startdaemons.sh @@ -23,7 +23,8 @@ ARGS= if [ $# -gt 0 ]; then - ARGS="$ARGS -s$1" + ID=`echo $1 | sed s/\\\\./_/g` + ARGS="$ARGS -s$1 -i$ID" fi if [ $# -gt 1 ]; then |