mirror of https://github.com/ansible/ansible.git
Tolerate win line endings on windows module_util load (#37291)
* tolerate windows line endings when loading windows module utils. Helpful for old custom windows modules. * add test modules to demonstrate win line ending module load behaviour. * attempt to fix sanity check failures * pep8 fix * explict skip of test modules from shebang check (core modules must still have expected unix style line endings) * switch to rstrip() following core team meeting feedbackpull/38355/merge
parent
4e38036bbd
commit
ad94d03ba1
@ -0,0 +1,6 @@
|
|||||||
|
#!powershell
|
||||||
|
|
||||||
|
#Requires -Module Ansible.ModuleUtils.Legacy
|
||||||
|
|
||||||
|
Exit-Json @{ data="success" }
|
||||||
|
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
#!powershell
|
||||||
|
# POWERSHELL_COMMON
|
||||||
|
|
||||||
|
Exit-Json @{ data="success" }
|
||||||
Loading…
Reference in New Issue