in reply to Re^4: reboot a system (machine or server) multiple times with perl script
in thread reboot a system (machine or server) multiple times with perl script
#!/bin/bash ssh root@machine 'reboot' until ping -c1 machine ; do sleep 1; done ssh root@machine 'reboot'
|
|---|