#!/bin/bash echo -e "Content-type: text/html\n\n" echo "" echo "" echo "Pressed the Big Red Button" echo "" echo "" echo -e "

" 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 "

" echo "" echo "" exit 0;