hacks/fix-raspian-defaults/rc.local.txt

11 lines
245 B
Plaintext
Raw Normal View History

2019-10-04 13:41:13 +00:00
#!/bin/sh # can't assume bash yet
if [ ! -d /boot/root ]; then
logger -s -t rc.local.txt cant find root overlay in /boot
else
rsync -avP /boot/root/ / && \
rm -rf /boot/root /boot/rc.local.txt # we only need to run once
fi
reboot