fb69881dde
The services definitions for master.cf were previously defined in the services.jinja file. This commit instead moves them into the services.yaml file, as we should not require any jinja parsing inside the services definitions. Drive-By: Add a .gitignore file Drive-By: Set manage_master_config: True for kitchen. We do want to verify that the master.cf file generation is actually working. Drive-By: Add fedora-latest as a kitchen testing target, this helps with verifying the os_family map testing that was added in PR #79 Drive-By: Link to the kitchen-salt getting started guide in the README
21 lines
312 B
YAML
21 lines
312 B
YAML
sudo: required
|
|
cache: bundler
|
|
language: ruby
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- bundle install
|
|
|
|
env:
|
|
matrix:
|
|
- INSTANCE: postfix-debian-9
|
|
- INSTANCE: postfix-ubuntu-1804
|
|
- INSTANCE: postfix-centos-7
|
|
- INSTANCE: postfix-fedora-latest
|
|
|
|
script:
|
|
- bundle exec kitchen verify ${INSTANCE}
|
|
|