]> gitweb.pimeys.fr Git - scripts-20-100.git/commitdiff
[ckankecéfini] Pour afficher un alert localement quand un process distant ne tourne...
authorVincent Le Gallic <legallic@crans.org>
Mon, 17 Mar 2014 00:29:20 +0000 (01:29 +0100)
committerVincent Le Gallic <legallic@crans.org>
Mon, 17 Mar 2014 00:29:20 +0000 (01:29 +0100)
Special thanks to Nit pour notify-send

ckankecéfini.sh [new file with mode: 0755]

diff --git a/ckankecéfini.sh b/ckankecéfini.sh
new file mode 100755 (executable)
index 0000000..6000577
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+# Pour alerter *localement* quand un truc est fini sur une machine *distante*
+
+where=$1
+what=$2
+
+ssh ${where} "while [[ \"\$(pidof ${what})\" != \"\" ]]; do true; done"
+
+notify-send --urgency=low -i preferences-system-network "${what} done on ${where}"