forgot finally 2.4 syntax
This commit is contained in:
parent
eeb9d34812
commit
286bc3d9dc
1 changed files with 19 additions and 17 deletions
|
@ -182,6 +182,7 @@ def sensu_check(module, path, name, state='present', backup=False):
|
||||||
except ImportError:
|
except ImportError:
|
||||||
import simplejson as json
|
import simplejson as json
|
||||||
|
|
||||||
|
try:
|
||||||
try:
|
try:
|
||||||
stream = open(path, 'r')
|
stream = open(path, 'r')
|
||||||
config = json.load(stream.read())
|
config = json.load(stream.read())
|
||||||
|
@ -276,6 +277,7 @@ def sensu_check(module, path, name, state='present', backup=False):
|
||||||
if changed and not module.check_mode:
|
if changed and not module.check_mode:
|
||||||
if backup:
|
if backup:
|
||||||
module.backup_local(path)
|
module.backup_local(path)
|
||||||
|
try:
|
||||||
try:
|
try:
|
||||||
stream = open(path, 'w')
|
stream = open(path, 'w')
|
||||||
stream.write(json.dumps(config, indent=2) + '\n')
|
stream.write(json.dumps(config, indent=2) + '\n')
|
||||||
|
|
Loading…
Reference in a new issue