diff options
author | aiju <aiju@phicode.de> | 2012-08-07 18:43:13 +0200 |
---|---|---|
committer | aiju <aiju@phicode.de> | 2012-08-07 18:43:13 +0200 |
commit | 2e19497159b0302069cac91a419923190cd0f21e (patch) | |
tree | c4558df9c288a33f54ca6fa1850b2cdbd6b573f4 /rc/bin/fshalt | |
parent | 4c4a3cbfd47cda7286ea52035f1486985c7996d0 (diff) |
hjfs: default service name, fshalt
Diffstat (limited to 'rc/bin/fshalt')
-rwxr-xr-x | rc/bin/fshalt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/rc/bin/fshalt b/rc/bin/fshalt index 2847e6a6c..72f3a7f54 100755 --- a/rc/bin/fshalt +++ b/rc/bin/fshalt @@ -24,6 +24,7 @@ sleep 1 k=`{ls /srv/kfs*cmd >[2]/dev/null|sort -r} c=`{ls /srv/cwfs*cmd >[2]/dev/null} +h=`{ls /srv/hjfs*cmd >[2]/dev/null} for (i in $k){ echo -n $i... @@ -81,6 +82,11 @@ fn x { echo halt >>$i sleep 2 } + for(i in $h){ + echo -n $i + echo halt >>$i + sleep 2 + } echo echo done halting |