=== modified file 'ChangeLog'
--- ChangeLog	2016-03-01 05:51:26 +0000
+++ ChangeLog	2016-03-01 17:33:06 +0000
@@ -81,6 +81,8 @@
  - lxd: add support for setting up lxd using 'lxd init' (LP: #1522879)
  - Add Image Customization Parser for VMware vSphere Hypervisor
    Support. [Sankar Tanguturi]
+ - timezone: use a symlink rather than copy for /etc/localtime
+   unless it is already a file (LP: #1543025).
 
 0.7.6:
  - open 0.7.6

=== modified file 'cloudinit/distros/__init__.py'
--- cloudinit/distros/__init__.py	2015-07-22 12:06:34 +0000
+++ cloudinit/distros/__init__.py	2016-03-01 17:33:06 +0000
@@ -897,5 +897,9 @@
     util.write_file(tz_conf, str(tz).rstrip() + "\n")
     # This ensures that the correct tz will be used for the system
     if tz_local and tz_file:
-        util.copy(tz_file, tz_local)
+        # use a symlink if there exists a symlink or tz_local is not present
+        if os.path.islink(tz_local) or not os.path.exists(tz_local):
+            os.symlink(tz_file, tz_local)
+        else:
+            util.copy(tz_file, tz_local)
     return

