blob: c9d7fadf90e1bf15e9ced05278fbee5010f4580c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
MESSAGE="Trying to stop `hostname` B.E."
/usr/bin/func "*" call msg display "$MESSAGE" &
sudo /sbin/sv stop mythbackend
MESSAGE="`hostname` B.E. stopped"
/usr/bin/func "*" call msg display "$MESSAGE" &
|