27 lines
471 B
Plaintext
27 lines
471 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
source pa-lib
|
||
|
|
||
|
pa-preheat
|
||
|
|
||
|
pa-announcement-quickest
|
||
|
|
||
|
pa-say "Test of emergency warning system will begin."
|
||
|
|
||
|
sleep 1
|
||
|
|
||
|
emergency-light on
|
||
|
pa-say "This is only a test. In the event of an emergency, this emergency warning light would be used to declare an emergency."
|
||
|
pa-say "This is only a test."
|
||
|
|
||
|
sleep 1
|
||
|
|
||
|
emergency-light off
|
||
|
|
||
|
pa-say "This was a test of the emergency warning light system. Thank you for your cooperation."
|
||
|
|
||
|
pa-announcement-quick
|
||
|
|
||
|
pa-shutdown
|
||
|
|