Advertisement
Guest User

Vera reboot

a guest
Feb 6th, 2015
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. local ping = os.execute("ping -c 1 8.8.8.8")
  2. if ping ~= 0 then
  3. luup.log("Auto Reboot: Network down. Aborted.")
  4. else
  5. luup.log("Auto Reboot: Network OK. Rebooting in 2 seconds.")
  6. luup.sleep(2000)
  7. os.execute("reboot")
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement