#!/bin/sh  # can't assume bash yet

if [ ! -d /boot/root.overlay ]; then
    logger -s -t rc.local.txt cant find root overlay in /boot
else
    rsync -avP /boot/root.overlay/ /
    rm -rf /boot/rc.local.txt # we only need to run once
    #FIXME also remove /boot/root.overlay dir when working
fi

reboot
