0c363d284e
Commit 038a51cdc8
introduced a change
where the sshd_config file is not managed unless the 'sshd_config'
pillar variable is defined. The kitchen tests did not define that
variable, so they stopped working.
This change sets a default value for 'Port' so the file is managed
by Salt.
39 lines
662 B
YAML
39 lines
662 B
YAML
---
|
|
driver:
|
|
name: vagrant
|
|
|
|
platforms:
|
|
- name: centos-6.8
|
|
- name: centos-7.2
|
|
- name: ubuntu-14.04
|
|
- name: ubuntu-16.04
|
|
- name: debian-8.5
|
|
|
|
provisioner:
|
|
name: salt_solo
|
|
salt_install: bootstrap
|
|
salt_bootstrap_url: https://bootstrap.saltstack.com
|
|
salt_version: latest
|
|
formula: openssh
|
|
pillars:
|
|
top.sls:
|
|
base:
|
|
'*':
|
|
- openssh
|
|
openssh.sls:
|
|
sshd_config:
|
|
Port: 22
|
|
ssh_config:
|
|
Port: 22
|
|
openssh:
|
|
sshd_config_mode: '600'
|
|
|
|
suites:
|
|
- name: default
|
|
provisioner:
|
|
salt_bootstrap_options: -X -d
|
|
state_top:
|
|
base:
|
|
'*':
|
|
- openssh.config
|