script added

This commit is contained in:
Martin Ness 2015-09-28 23:06:01 +02:00
parent e813711ad8
commit aab9eb3700
2 changed files with 37 additions and 0 deletions

13
push.d/skeleton.sh Normal file
View file

@ -0,0 +1,13 @@
#!/bin/sh
case "$1" in
ON)
echo 'ON'
;;
HALF)
echo 'HALF'
;;
OFF)
echo 'OFF'
;;
esac