blob: 77c457701c7be5f62cf587b2bb774ddb3ddadc0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/bash
echo -e "Content-type: text/html\n\n"
echo "<html>"
echo "<head>"
echo "<title>Pressed the Big Red Button</title>"
echo "</head>"
echo "<body>"
echo -e "<center><h1>"
if [ ! -f /var/lib/asterisk/brb/pressed ]; then
touch /var/lib/asterisk/brb/pressed
echo -e "CLICK"
else
echo -e "PATIENCE GRASSHOPPER!"
fi
echo -e "</center></h1>"
echo "</body>"
echo "</html>"
exit 0;
|