lineinfile - don't run os.makedirs on empty dir path (#63921)

* Fix #63919: don't run os.makedirs on empty dir path

* integration test for lineinfile create: yes without path
This commit is contained in:
Robert Osowiecki 2019-10-29 18:06:17 +01:00 committed by Sam Doran
parent 92daec5d0b
commit 3c978a3225
3 changed files with 21 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- "lineinfile - don't attempt mkdirs when path doesn't contain directory path"

View file

@ -259,7 +259,7 @@ def present(module, dest, regexp, line, insertafter, insertbefore, create,
if not create:
module.fail_json(rc=257, msg='Destination %s does not exist !' % dest)
b_destpath = os.path.dirname(b_dest)
if not os.path.exists(b_destpath) and not module.check_mode:
if b_destpath and not os.path.exists(b_destpath) and not module.check_mode:
try:
os.makedirs(b_destpath)
except Exception as e:

View file

@ -279,6 +279,24 @@
that:
- "result.stat.checksum == '038f10f9e31202451b093163e81e06fbac0c6f3a'"
- name: Create a file without a path
lineinfile:
dest: file.txt
create: yes
line: Test line
register: create_no_path_test
- name: Stat the file
stat:
path: file.txt
register: create_no_path_file
- name: Ensure file was created
assert:
that:
- create_no_path_test is changed
- create_no_path_file.stat.exists
# Test EOF in cases where file has no newline at EOF
- name: testnoeof deploy the file for lineinfile
copy: