Sebastien Bacher eab885e336 Import patches-unapplied version 2.313 to ubuntu/wily-proposed
Imported using git-ubuntu import.

Changelog parent: c046fa9fdcbf36b055b539a6ab23257fa1f1ff0e

New changelog entries:
  * Revert symlink changes, that creates build issues, copy updated hook
    to the desktop-next directory instead
2015-06-10 09:48:42 +00:00

16 lines
381 B
Bash

#!/bin/sh
set -e
mkdir -p /etc/writable
# cloud-init needs to be able to modify hostname and has the ability to
# set the other two.
for f in timezone localtime hostname; 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