2013-04-13 13:09:53 +02:00
|
|
|
From: Frederic Crozat <fcrozat@suse.com>
|
|
|
|
Date: Tue, 14 Aug 2012 14:26:16 +0200
|
|
|
|
Subject: timedate: add support for openSUSE version of /etc/sysconfig/clock
|
|
|
|
|
|
|
|
---
|
|
|
|
src/timedate/timedated.c | 7 +++++++
|
|
|
|
1 file changed, 7 insertions(+)
|
|
|
|
|
2013-07-23 11:21:21 +02:00
|
|
|
--- systemd-206.orig/src/timedate/timedated.c
|
|
|
|
+++ systemd-206/src/timedate/timedated.c
|
2013-04-19 22:31:17 +02:00
|
|
|
@@ -182,6 +182,13 @@ static int read_data(void) {
|
2013-04-13 13:09:53 +02:00
|
|
|
goto have_timezone;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+#ifdef HAVE_SYSV_COMPAT
|
|
|
|
+ r = parse_env_file("/etc/sysconfig/clock", NEWLINE,
|
|
|
|
+ "TIMEZONE", &tz.zone,
|
|
|
|
+ NULL);
|
|
|
|
+ if (r < 0 && r != -ENOENT)
|
|
|
|
+ log_warning("Failed to read /etc/sysconfig/clock: %s", strerror(-r));
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
have_timezone:
|
|
|
|
if (isempty(tz.zone)) {
|