You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
255 B
10 lines
255 B
6 years ago
|
---
|
||
|
- name: get timezone via timedatectl
|
||
|
shell: timedatectl | grep "Time zone" | cut -d: -f2 | cut -d'(' -f1 | sed -Ee 's/(^ *| *$)//g'
|
||
|
register: linux_tz
|
||
|
changed_when: False
|
||
|
|
||
|
- name: set linux-config facts
|
||
|
set_fact:
|
||
|
linux_tz: linux_tz.stdout
|