Merge pull request #4470 from jyap808/patch-1

Assume state='directory' if recurse is set and previous state was 'direc...
reviewable/pr18780/r1
jctanner 11 years ago
commit c617705687

@ -200,9 +200,14 @@ def main():
elif os.stat(path).st_nlink > 1:
prev_state = 'hard'
else:
# could be many other tings, but defaulting to file
# could be many other things, but defaulting to file
prev_state = 'file'
recurse = params['recurse']
if recurse and state == 'file' and prev_state == 'directory':
state = 'directory'
if prev_state != 'absent' and state == 'absent':
try:
if prev_state == 'directory':
@ -248,7 +253,6 @@ def main():
changed = True
changed = module.set_directory_attributes_if_different(file_args, changed)
recurse = params['recurse']
if recurse:
for root,dirs,files in os.walk( file_args['path'] ):
for dir in dirs:

Loading…
Cancel
Save