mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
a8e4c9be7a
commit
09cc84c796
1 changed files with 4 additions and 3 deletions
|
@ -215,9 +215,6 @@ def main():
|
|||
if not new_comment:
|
||||
new_comment = old_comment
|
||||
|
||||
if new_comment:
|
||||
new_comment = "\t#"+new_comment
|
||||
|
||||
line_fields = newline.split(' ')
|
||||
|
||||
if len(line_fields) != 4:
|
||||
|
@ -262,6 +259,8 @@ def main():
|
|||
# Change line only if value has changed
|
||||
if new_value != actual_value:
|
||||
changed = True
|
||||
if new_comment:
|
||||
new_comment = "\t#" + new_comment
|
||||
new_limit = domain + "\t" + limit_type + "\t" + limit_item + "\t" + new_value + new_comment + "\n"
|
||||
message = new_limit
|
||||
nf.write(new_limit)
|
||||
|
@ -273,6 +272,8 @@ def main():
|
|||
|
||||
if not found:
|
||||
changed = True
|
||||
if new_comment:
|
||||
new_comment = "\t#"+new_comment
|
||||
new_limit = domain + "\t" + limit_type + "\t" + limit_item + "\t" + new_value + new_comment + "\n"
|
||||
message = new_limit
|
||||
nf.write(new_limit)
|
||||
|
|
Loading…
Reference in a new issue