powershell - add bootstrap wrapper to packaging manifest
This commit is contained in:
parent
04d87a76c1
commit
ad36fbcd24
3 changed files with 4 additions and 0 deletions
|
@ -10,6 +10,7 @@ include examples/hosts
|
|||
include examples/ansible.cfg
|
||||
include examples/scripts/ConfigureRemotingForAnsible.ps1
|
||||
include examples/scripts/upgrade_to_ps3.ps1
|
||||
recursive-include lib/ansible/executor/powershell *
|
||||
recursive-include lib/ansible/module_utils/powershell *
|
||||
recursive-include lib/ansible/modules *
|
||||
recursive-include lib/ansible/galaxy/data *
|
||||
|
|
2
changelogs/fragments/powershell-bootstrap.yaml
Normal file
2
changelogs/fragments/powershell-bootstrap.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- powershell - add ``lib/ansible/executor/powershell`` to the packaging data
|
1
setup.py
1
setup.py
|
@ -245,6 +245,7 @@ static_setup_params = dict(
|
|||
packages=find_packages('lib'),
|
||||
package_data={
|
||||
'': [
|
||||
'executor/powershell/*.ps1',
|
||||
'module_utils/powershell/*.psm1',
|
||||
'module_utils/powershell/*/*.psm1',
|
||||
'modules/windows/*.ps1',
|
||||
|
|
Loading…
Reference in a new issue