Circlean/fs/opt/groomer/init.sh

30 lines
403 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.
2013-03-28 18:04:29 +01:00
#mount -o remount,rw /
${SYNC}
# shutdown -h now
}
trap clean EXIT TERM INT
# Remount the root filesystem in RO mode
2013-03-28 18:04:29 +01:00
#mount -o remount,ro /
chown -R kitten:kitten /home/${USERNAME}/
2013-02-15 18:47:13 +01:00
su ${USERNAME} -c ./groomer.sh