mirror of
https://github.com/saltstack-formulas/packages-formula.git
synced 2025-04-17 10:10:27 +00:00
35 lines
924 B
YAML
35 lines
924 B
YAML
# -*- coding: utf-8 -*-
|
|
# vim: ft=yaml
|
|
---
|
|
driver:
|
|
name: vagrant
|
|
cache_directory: false
|
|
customize:
|
|
usbxhci: 'off'
|
|
gui: false
|
|
linked_clone: true
|
|
ssh:
|
|
shell: /bin/sh
|
|
|
|
platforms:
|
|
- name: windows-81-latest-py3
|
|
driver:
|
|
box: techneg/win81x64-pro-salt
|
|
cache_directory: "/omnibus/cache"
|
|
customize: {}
|
|
ssh: {}
|
|
provisioner:
|
|
salt_install: none
|
|
# yamllint disable rule:line-length
|
|
init_environment: |
|
|
# Workaround to allow `kitchen converge` to be used multiple times
|
|
# without having to `kitchen destroy` first: remove state files cached by
|
|
# Salt during the previous `converge` (if present)
|
|
rm -recurse `
|
|
C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base `
|
|
-ErrorAction SilentlyContinue
|
|
exit 0
|
|
# yamllint enable rule:line-length
|
|
|
|
provisioner:
|
|
salt_install: bootstrap
|