massive refactoring for programmatic control and stability

This commit is contained in:
David Dollar
2012-06-10 22:58:09 -04:00
parent f41cc552c7
commit 51a704939e
65 changed files with 984 additions and 1317 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/bin/sh
NAME="$1"
sigterm() {
echo "$NAME: got sigterm"
}
#trap sigterm SIGTERM
while true; do
echo "$NAME: ping"
sleep 1
done