[PR #8452/2a3819a6 backport][stable-9] git_config: fix state=absent if value is present (#8466)

git_config: fix state=absent if value is present (#8452)

* Fix state=absent if value is present.

* Update changelog fragment.

(cherry picked from commit 2a3819a696)

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
patchback[bot] 2024-06-06 13:19:02 +02:00 committed by GitHub
commit b3037a46be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 27 additions and 1 deletions

View file

@ -18,6 +18,30 @@
scope: "{{ option_scope }}"
register: get_result
- name: assert unset changed and deleted value
assert:
that:
- unset_result is changed
- unset_result.diff.before == option_value + "\n"
- unset_result.diff.after == "\n"
- get_result.config_value == ''
- import_tasks: setup_value.yml
- name: unsetting value with value specified
git_config:
name: "{{ option_name }}"
scope: "{{ option_scope }}"
value: "{{ option_value }}"
state: absent
register: unset_result
- name: getting value
git_config:
name: "{{ option_name }}"
scope: "{{ option_scope }}"
register: get_result
- name: assert unset changed and deleted value
assert:
that: