diff options
author | Colin Guthrie <colin@mageia.org> | 2015-02-08 21:33:24 +0000 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2015-02-08 21:33:46 +0000 |
commit | f6d83149036c800310fb307b79a477c614141056 (patch) | |
tree | c0cc8b9031b7abf03e40486d46e6a33953c77c21 /perl-install | |
parent | 2969bde783d7e815a9867fe323e17394369579aa (diff) | |
download | drakx-f6d83149036c800310fb307b79a477c614141056.tar drakx-f6d83149036c800310fb307b79a477c614141056.tar.gz drakx-f6d83149036c800310fb307b79a477c614141056.tar.bz2 drakx-f6d83149036c800310fb307b79a477c614141056.tar.xz drakx-f6d83149036c800310fb307b79a477c614141056.zip |
drakclock: Ensure that /etc/localtime is a symlink (mga#14888)
This is actually just a followup to d4be53b62 to use the wrapper symlinkf() function
which seems a little bit neater (subjective) and to update NEWS file.
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/timezone.pm | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 9b39624b6..bafa1b15a 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,4 @@ +- drakclock: Ensure that /etc/localtime is a symlink (mga#14888) - users: Make sure to restart accounts-daemon after adding users (mga#15113, mga#14476) - i18n: Write the desired console font to /etc/vconsole.conf - i18n: Use the x-distro /etc/locale.conf file instead of /etc/sysconfig/i18n diff --git a/perl-install/timezone.pm b/perl-install/timezone.pm index 98a33c368..ec252c603 100644 --- a/perl-install/timezone.pm +++ b/perl-install/timezone.pm @@ -64,8 +64,8 @@ sub write { set_ntp_server($t->{ntp}); my $tz_prefix = get_timezone_prefix(); - unlink "$::prefix/etc/localtime" or log::l("unlinking $! failed"); - symlink ($tz_prefix . '/' . $t->{timezone}, "$::prefix/etc/localtime") or log::l("linking /etc/localtime failed"); + eval { symlinkf($tz_prefix . '/' . $t->{timezone}, "$::prefix/etc/localtime") }; + $@ and log::l("installing /etc/localtime failed"); setVarsInSh("$::prefix/etc/sysconfig/clock", { ZONE => $t->{timezone}, UTC => bool2text($t->{UTC}), |