1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

timezone tests: do not restore original timezone if it wasn't known (value 'n/a') (#7476)

Do not restore original timezone if it wasn't known (value 'n/a').
This commit is contained in:
Felix Fontein 2023-11-04 13:07:49 +01:00 committed by GitHub
parent a366318ac6
commit 57e36d7dc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -93,4 +93,4 @@
- name: Restore original system timezone - {{ original_timezone.diff.before.name }}
timezone:
name: "{{ original_timezone.diff.before.name }}"
when: original_timezone is changed
when: original_timezone is changed and original_timezone.diff.before.name != 'n/a'