diff options
author | Daniel Mack <github@zonque.org> | 2015-07-01 19:01:28 -0400 |
---|---|---|
committer | Daniel Mack <github@zonque.org> | 2015-07-01 19:01:28 -0400 |
commit | c9b9e8e9e2fa14fc3d4dd93240eb7d0b3df8732e (patch) | |
tree | fd7374f3778d2ccfc4c4fc4adc830dbed5366468 | |
parent | 02e9cc6207456ec2576628be506cd1c90fdc2fb8 (diff) | |
parent | ab59f4123a6f9c32953e522cc9afc5fc610d59ca (diff) |
Merge pull request #466 from rivanvx/master
timedatectl: trim non-local RTC warning to 80 chars wide
-rw-r--r-- | src/timedate/timedatectl.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/timedate/timedatectl.c b/src/timedate/timedatectl.c index 195d5f3892..25c25952aa 100644 --- a/src/timedate/timedatectl.c +++ b/src/timedate/timedatectl.c @@ -154,11 +154,12 @@ static void print_status_info(const StatusInfo *i) { if (i->rtc_local) fputs("\n" ANSI_HIGHLIGHT_ON - "Warning: The system is configured to read the RTC time in the local time zone. This\n" - " mode can not be fully supported. It will create various problems with time\n" - " zone changes and daylight saving time adjustments. The RTC time is never updated,\n" - " it relies on external facilities to maintain it. If at all possible, use\n" - " RTC in UTC by calling 'timedatectl set-local-rtc 0'" ANSI_HIGHLIGHT_OFF ".\n", stdout); + "Warning: The system is configured to read the RTC time in the local time zone.\n" + " This mode can not be fully supported. It will create various problems\n" + " with time zone changes and daylight saving time adjustments. The RTC\n" + " time is never updated, it relies on external facilities to maintain it.\n" + " If at all possible, use RTC in UTC by calling\n" + " 'timedatectl set-local-rtc 0'" ANSI_HIGHLIGHT_OFF ".\n", stdout); } static int show_status(sd_bus *bus, char **args, unsigned n) { |