Skip to content

Commit

Permalink
Merge d5e6320 into 0d91aa3
Browse files Browse the repository at this point in the history
  • Loading branch information
dkasyanov committed Mar 29, 2021
2 parents 0d91aa3 + d5e6320 commit 03fc81d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
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 03fc81d

Please sign in to comment.