#!/system/bin/sh
# version 1.0

#Create logfile
if [ ! -e /sdcard/aconf.log ] ;then
    touch /sdcard/aconf.log
fi
echo "" >> /sdcard/aconf.log
echo "`date +%Y-%m-%d_%T` Device rebooted" >> /sdcard/aconf.log

# execute atlas.sh
sh -x /system/bin/atlas.sh -ua
