aboutsummaryrefslogtreecommitdiff
path: root/rc.d
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2011-06-05 01:57:31 +0200
committerTom Gundersen <teg@jklm.no>2011-06-05 01:57:31 +0200
commit0dfd69b9e8617ef15413e5022442017603be5344 (patch)
tree7d03111e655e14529f62d5d1041f6f3d0069eecf /rc.d
parent66f7acdc789099114945f08c92c9957f7e536f2d (diff)
parentd847a204aa5ab21a6c02998846ec3216cc7f887d (diff)
downloadinitscripts-0dfd69b9e8617ef15413e5022442017603be5344.tar.xz
Merge remote-tracking branch 'falconindy/working'
Conflicts: rc.sysinit Conflict with ip move away from /usr
Diffstat (limited to 'rc.d')
-rwxr-xr-xrc.d4
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d b/rc.d
index 772f2c6..f0c5204 100755
--- a/rc.d
+++ b/rc.d
@@ -56,9 +56,9 @@ case $1 in
cd /
for i; do
if [[ -x "/etc/rc.d/$i" ]]; then
- /usr/bin/env -i "${ENV[@]}" "/etc/rc.d/$i" "$action"
+ /usr/bin/env -i "${ENV[@]}" "/etc/rc.d/$i" "$action"
else
- printf "${C_OTHER}:: ${C_FAIL}Error: ${C_DONE}Daemon script $i does not exist.\n"
+ printf "${C_OTHER}:: ${C_FAIL}Error: ${C_DONE}Daemon script $i does not exist.\n"
fi
(( ret += !! $? )) # clamp exit value to 0/1
done