Skip to content

Commit

Permalink
Merge a8790e1 into 0d91aa3
Browse files Browse the repository at this point in the history
  • Loading branch information
dkasyanov committed Mar 29, 2021
2 parents 0d91aa3 + a8790e1 commit 4623e73
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
15 changes: 3 additions & 12 deletions README.rst
@@ -1,18 +1,9 @@
==============
packerlicious
==============
.. image:: https://img.shields.io/pypi/v/packerlicious.svg
:target: https://pypi.python.org/pypi/packerlicious

.. image:: https://travis-ci.org/mayn/packerlicious.svg?branch=master
:target: https://travis-ci.org/mayn/packerlicious

.. image:: https://ci.appveyor.com/api/projects/status/9av1rr1li2ah25gs/branch/master?svg=true
:target: https://ci.appveyor.com/project/mayn/packerlicious

.. image:: https://coveralls.io/repos/github/mayn/packerlicious/badge.svg?branch=master
:target: https://coveralls.io/github/mayn/packerlicious

.. image:: https://ci.appveyor.com/api/projects/status/734n8y5s0wtqspj7/branch/master?svg=true
:target: https://ci.appveyor.com/project/dkasyanov/packerlicious


About
Expand Down Expand Up @@ -194,7 +185,7 @@ packerlicious contains source code from `troposphere`_ which is licensed under t

.. _`packer`: https://www.packer.io/
.. _`troposphere`: https://github.com/cloudtools/troposphere
.. _`LICENSE`: https://github.com/mayn/packerlicious/blob/master/LICENSE
.. _`LICENSE`: https://github.com/dkasyanov/packerlicious/blob/master/LICENSE
.. _`Apache license 2.0`: https://opensource.org/licenses/Apache-2.0
.. _`BSD 2-Clause license`: http://opensource.org/licenses/BSD-2-Clause
.. _`semantic versioning`: http://semver.org/
Expand Down
5 changes: 4 additions & 1 deletion appveyor.yml
Expand Up @@ -5,11 +5,14 @@ environment:
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python39"

install:
- SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python --version
- pip install -r requirements-travis.txt
- python -m pip install --upgrade pip
- python -m pip install -r requirements-travis.txt
- powershell tools\get-packer.ps1

build: off
Expand Down
7 changes: 6 additions & 1 deletion src/packerlicious/provisioner.py
Expand Up @@ -62,7 +62,7 @@ class AnsibleLocal(PackerProvisioner):
'playbook_dir': (str, False),
'playbook_paths': ([str], False),
'galaxy_file': (str, False),
'galaxycommand': (str, False),
'galaxy_command': (str, False),
'group_vars': (str, False),
'host_vars': (str, False),
'role_paths': ([str], False),
Expand Down Expand Up @@ -100,6 +100,11 @@ class Ansible(PackerProvisioner):
'ssh_host_key_file': (str, False),
'ssh_authorized_key_file': (str, False),
'user': (str, False),
'galaxy_file': (str, False),
'galaxy_command': (str, False),
'galaxy_force_install': (validator.boolean, False),
'roles_path': (str, False),
'collections_path': (str, False),
}


Expand Down

0 comments on commit 4623e73

Please sign in to comment.