From 93d2761551fd53d321868795843a911cdc5d2455 Mon Sep 17 00:00:00 2001 From: Jack Date: Fri, 16 Mar 2018 00:48:03 -0500 Subject: [PATCH] Fix typo in timezone.py (#37442) --- lib/ansible/modules/system/timezone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/timezone.py b/lib/ansible/modules/system/timezone.py index f7d6ea555f8..db942cc5f14 100644 --- a/lib/ansible/modules/system/timezone.py +++ b/lib/ansible/modules/system/timezone.py @@ -19,7 +19,7 @@ description: - This module configures the timezone setting, both of the system clock and of the hardware clock. If you want to set up the NTP, use M(service) module. - It is recommended to restart C(crond) after changing the timezone, otherwise the jobs may run at the wrong time. - Several different tools are used depending on the OS/Distribution involved. - For Linux it can use C(timedatectl) or edit C(/etc/sysconfig/clock) or C(/etc/timezone) andC(hwclock). + For Linux it can use C(timedatectl) or edit C(/etc/sysconfig/clock) or C(/etc/timezone) and C(hwclock). On SmartOS, C(sm-set-timezone), for macOS, C(systemsetup), for BSD, C(/etc/localtime) is modified. - As of version 2.3 support was added for SmartOS and BSDs. - As of version 2.4 support was added for macOS.