1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-06-07 16:54:06 +00:00

fixed win_file state=touch

This commit is contained in:
Andreas Reischuck 2015-06-27 23:34:16 +02:00 committed by Matt Clay
parent 5e259a8dd9
commit 3cc14a0a65

View file

@ -56,7 +56,7 @@ If ( $state -eq "touch" )
}
Else
{
echo $null > $file
echo $null > $path
}
$result.changed = $TRUE
}