Circlean/fs/opt/groomer/init.sh

25 lines
259 B
Bash
Raw Normal View History

2013-02-15 18:47:13 +01:00
#!/bin/bash
set -e
#set -x
2013-02-15 18:47:13 +01:00
source ./constraint.sh
if [ ${ID} -ne 0 ]; then
echo "This script has to be run as root."
exit
fi
clean(){
echo Done, cleaning.
${SYNC}
}
trap clean EXIT TERM INT
./music.sh &
2013-06-06 16:26:23 +02:00
su ${USERNAME} -c ./groomer.sh
2013-02-15 18:47:13 +01:00