mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
2
changelogs/fragments/5687-gconftool2.yml
Normal file
2
changelogs/fragments/5687-gconftool2.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- "gconftool2 - fix crash that prevents setting a key (https://github.com/ansible-collections/community.general/issues/5591, https://github.com/ansible-collections/community.general/pull/5687)."
|
||||
@@ -125,7 +125,7 @@ class GConf2Preference(object):
|
||||
elif call_type == 'set':
|
||||
cmd.extend(direct)
|
||||
cmd.extend(config_source)
|
||||
cmd.extend(["--type", self.value_type, "--{3}".format(call_type), self.key, self.value])
|
||||
cmd.extend(["--type", self.value_type, "--{0}".format(call_type), self.key, self.value])
|
||||
elif call_type == 'unset':
|
||||
cmd.extend(["--unset", self.key])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user