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