Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
54aeaaf4
Commit
54aeaaf4
authored
Oct 10, 2013
by
Robert Parrott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
small change ... in order to get changed signal correct, move DEFAULT section test upward.
parent
76213591
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
library/files/ini_file
+3
-3
No files found.
library/files/ini_file
View file @
54aeaaf4
...
@@ -117,10 +117,10 @@ def do_ini(module, filename, section=None, option=None, value=None, state='prese
...
@@ -117,10 +117,10 @@ def do_ini(module, filename, section=None, option=None, value=None, state='prese
if
state
==
'present'
:
if
state
==
'present'
:
if
cp
.
has_section
(
section
)
==
False
:
# DEFAULT section is always there by DEFAULT, so never try to add it.
if
cp
.
has_section
(
section
)
==
False
and
section
.
upper
()
!=
'DEFAULT'
:
if
section
.
upper
()
!=
'DEFAULT'
:
cp
.
add_section
(
section
)
cp
.
add_section
(
section
)
changed
=
True
changed
=
True
if
option
is
not
None
and
value
is
not
None
:
if
option
is
not
None
and
value
is
not
None
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment