ubuntu-touch: Make writable symlinks relative.

This commit is contained in:
Martin Pitt 2013-09-30 13:59:57 +02:00
parent 7060858b2e
commit f61be85fdc
2 changed files with 7 additions and 1 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
livecd-rootfs (2.191) UNRELEASED; urgency=low
* ubuntu-touch: Make writable symlinks relative.
-- Martin Pitt <martin.pitt@ubuntu.com> Mon, 30 Sep 2013 13:58:45 +0200
livecd-rootfs (2.190) saucy; urgency=low
* ubuntu-touch: Add 03-etc-writable.chroot hook to move/symlink files in

View File

@ -10,5 +10,5 @@ for f in timezone localtime; do
mv /etc/$f /etc/writable/$f
fi
echo "I: Linking /etc/$f to /etc/writable/"
ln -s /etc/writable/$f /etc/$f
ln -s writable/$f /etc/$f
done