From 22b28520cd431c2f68acd66b877122379d704914 Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Tue, 27 Nov 2018 22:37:32 +0100 Subject: fshalt: wait for fileservers command file to vanish cwfs and hjfs create ther /srv command files with ORCLOSE flag, so they get removed once the fileserver terminates. we can use this to check that the fileserver has in fact finished halting without making assumtions about the time it should maximally take for any fileserver to write out its buffers to disk. --- rc/bin/fshalt | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/rc/bin/fshalt b/rc/bin/fshalt index 2fed2465a..24ee921c4 100755 --- a/rc/bin/fshalt +++ b/rc/bin/fshalt @@ -45,6 +45,7 @@ cp /bin/rc /tmp cp /bin/sed /tmp cp /bin/sleep /tmp cp /bin/scram /tmp +cp /bin/test /tmp bind /tmp /rc bind /tmp /bin @@ -53,15 +54,12 @@ bind /tmp /bin fn x { echo echo -n halting... - for (i in $c){ - echo -n $i... - echo halt >>$i - sleep 2 - } - for(i in $h){ - echo -n $i + for (i in $c $h) echo halt >>$i - sleep 2 + for (i in $c $h){ + echo -n $i... + while(test -e $i) + sleep 1 } echo echo done halting -- cgit v1.2.3