-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stop for loop #8
Comments
Same problem here. It's got #!/bin/sh at the top of the script but init v or whatever is running it using bash. Any idea what type of loop we should use instead? |
I replaced line 47 to line 57 with:
Also I raised the max waiting time to 60 seconds |
hehe, I did something similar |
(and then I call kill -9 if it still doesn't die) |
It is Bourne shell, so I used |
I think in Bourne shell the loop
for i in {1..10}
is not working. At least for me it only goes through once and causes thestop
to not wait long enough. Other scripts I looked at tend to use other type of loops.The text was updated successfully, but these errors were encountered: