Merge pull request #988 from isaacsimmons/ini-file-catch-interpolation-error

Handle ini file properties that contain interpolation errors
reviewable/pr18780/r1
Brian Coca 9 years ago
commit 46fa43d9e0

@ -120,6 +120,9 @@ def do_ini(module, filename, section=None, option=None, value=None, state='prese
if cp.get(section, option):
cp.remove_option(section, option)
changed = True
except ConfigParser.InterpolationError:
cp.remove_option(section, option)
changed = True
except:
pass
@ -143,6 +146,9 @@ def do_ini(module, filename, section=None, option=None, value=None, state='prese
except ConfigParser.NoOptionError:
cp.set(section, option, value)
changed = True
except ConfigParser.InterpolationError:
cp.set(section, option, value)
changed = True
if changed and not module.check_mode:
if backup:

Loading…
Cancel
Save