summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsleepy12
1 files changed, 12 insertions, 0 deletions
diff --git a/sleepy b/sleepy
new file mode 100755
index 0000000..078299b
--- /dev/null
+++ b/sleepy
@@ -0,0 +1,12 @@
+#! /bin/bash
+[ $# -lt 1 ] && echo "missing mandatory argument 'hostname'" && exit 1
+host=$1
+ssh $host "sudo halt" || exit 1
+CPT=0
+while [ ${CPT} -ne 5 ]; do
+ CPT=$((CPT+1))
+ ping -c 1 -W 2 -q $host 2>&1 >/dev/null
+ [ $? -ne 0 ] && echo "sshhh, he's asleep..." && exit 0
+ sleep 5
+done
+echo "$host is still awake!" && exit 1