fix timezone for centos6 (#3078)
This commit is contained in:
parent
66eaa464ee
commit
d4b94ec6bb
1 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ options:
|
|||
to configure, especially on virtual environments such as AWS.
|
||||
required: false
|
||||
aliases: ['rtc']
|
||||
author: "Shinichi TAMURA @tmshn"
|
||||
author: "Shinichi TAMURA (@tmshn)"
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
|
@ -402,7 +402,7 @@ class NosystemdTimezone(Timezone):
|
|||
def set_timezone(self, value):
|
||||
self._edit_file(filename=self.conf_files['name'],
|
||||
regexp=self.regexps['name'],
|
||||
value=self.tzline_format.format % value)
|
||||
value=self.tzline_format % value)
|
||||
self.execute(self.update_timezone)
|
||||
|
||||
def set_hwclock(self, value):
|
||||
|
|
Loading…
Reference in a new issue