mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-26 22:51:23 -07:00
create non-existent ini file
fixing fail_json more verbose fail msg
This commit is contained in:
parent
f7dfcc153e
commit
52d499d268
1 changed files with 6 additions and 0 deletions
|
@ -96,6 +96,7 @@ EXAMPLES = '''
|
||||||
|
|
||||||
import ConfigParser
|
import ConfigParser
|
||||||
import sys
|
import sys
|
||||||
|
import os
|
||||||
|
|
||||||
# ==============================================================
|
# ==============================================================
|
||||||
# do_ini
|
# do_ini
|
||||||
|
@ -103,6 +104,11 @@ import sys
|
||||||
def do_ini(module, filename, section=None, option=None, value=None, state='present', backup=False):
|
def do_ini(module, filename, section=None, option=None, value=None, state='present', backup=False):
|
||||||
|
|
||||||
|
|
||||||
|
if not os.path.exists(filename):
|
||||||
|
try:
|
||||||
|
open(filename,'w').close()
|
||||||
|
except:
|
||||||
|
module.fail_json(msg="Destination file %s not writable" % filename)
|
||||||
ini_file = open(filename, 'r')
|
ini_file = open(filename, 'r')
|
||||||
try:
|
try:
|
||||||
ini_lines = ini_file.readlines()
|
ini_lines = ini_file.readlines()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue