~ubuntu-core-dev/livecd-rootfs/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -e
set -x

mkdir -p /etc/writable
touch /etc/writable/machine-info

for f in timezone localtime machine-info hostname whoopsie; do
    if [ -e /etc/$f ]; then
        echo "I: Moving /etc/$f to /etc/writable/"
        mv /etc/$f /etc/writable/$f
    fi
    echo "I: Linking /etc/$f to /etc/writable/"
    ln -s writable/$f /etc/$f
done