[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r1383 - tzdata/trunk/debian



Author: aurel32
Date: 2006-04-10 09:29:53 +0000 (Mon, 10 Apr 2006)
New Revision: 1383

Modified:
   tzdata/trunk/debian/changelog
   tzdata/trunk/debian/postinst
Log:
  * Put a copy of the current timezone into /etc/localtime instead of a
    symlink.



Modified: tzdata/trunk/debian/changelog
===================================================================
--- tzdata/trunk/debian/changelog	2006-04-10 09:29:20 UTC (rev 1382)
+++ tzdata/trunk/debian/changelog	2006-04-10 09:29:53 UTC (rev 1383)
@@ -1,8 +1,9 @@
 tzdata (2006c-2) UNRELEASED; urgency=low
 
-  *  
+  * Put a copy of the current timezone into /etc/localtime instead of a
+    symlink.
 
- -- Aurelien Jarno <aurel32@debian.org>  Sun,  9 Apr 2006 23:11:54 +0200
+ -- Aurelien Jarno <aurel32@debian.org>  Mon, 10 Apr 2006 09:13:04 +0200
 
 tzdata (2006c-1) unstable; urgency=low
 

Modified: tzdata/trunk/debian/postinst
===================================================================
--- tzdata/trunk/debian/postinst	2006-04-10 09:29:20 UTC (rev 1382)
+++ tzdata/trunk/debian/postinst	2006-04-10 09:29:53 UTC (rev 1383)
@@ -69,7 +69,7 @@
     then
 #	zic -l $timezone
 	rm -f /etc/localtime && \
-	ln -sf /usr/share/zoneinfo/$timezone /etc/localtime
+	cp -f /usr/share/zoneinfo/$timezone /etc/localtime
 	zone_banner
     # Handle problem caused by lame old tzconfig.
     elif [ "$timezone" = "US/Pacific-New" ]
@@ -77,7 +77,7 @@
 	echo "US/Pacific" > /etc/timezone
 #	zic -l US/Pacific
 	rm -f /etc/localtime && \
-	ln -sf /usr/share/zoneinfo/US/Pacific /etc/localtime
+	cp -f /usr/share/zoneinfo/US/Pacific /etc/localtime
 	zone_banner
     else
 	set_timezone



Reply to: