summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Borean <jborean93@gmail.com>2018-12-01 02:41:46 +1000
committerMatt Davis <nitzmahone@users.noreply.github.com>2018-11-30 08:41:46 -0800
commit4ee4d207e3d225de66f932d1c461a9980d6afda7 (patch)
treea11af79803212a4e0a59e82072c1475bda013319
parent322ebb9feb398443d5277b140b5b380b3644f227 (diff)
downloadansible-4ee4d207e3d225de66f932d1c461a9980d6afda7.tar.gz
powershell - add bootstrap wrapper to packaging manifest (#49356)
-rw-r--r--MANIFEST.in1
-rw-r--r--changelogs/fragments/powershell-bootstrap.yaml2
-rw-r--r--setup.py1
3 files changed, 4 insertions, 0 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index c1ea0979c0..9d00985345 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -11,6 +11,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 *
diff --git a/changelogs/fragments/powershell-bootstrap.yaml b/changelogs/fragments/powershell-bootstrap.yaml
new file mode 100644
index 0000000000..98f4a7d370
--- /dev/null
+++ b/changelogs/fragments/powershell-bootstrap.yaml
@@ -0,0 +1,2 @@
+bugfixes:
+- powershell - add ``lib/ansible/executor/powershell`` to the packaging data
diff --git a/setup.py b/setup.py
index bca28000fa..dc788385a8 100644
--- a/setup.py
+++ b/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',