Yamllint fixes
Signed-off-by: Lance Albertson <lance@osuosl.org>
This commit is contained in:
parent
3bf9b4e1d1
commit
ff96db8fe9
@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
- Cookstyle fixes
|
- Cookstyle fixes
|
||||||
- ChefSpec fixes
|
- ChefSpec fixes
|
||||||
|
- Yamllint fixes
|
||||||
|
|
||||||
## 5.3.1 (2018-07-24)
|
## 5.3.1 (2018-07-24)
|
||||||
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
---
|
||||||
driver:
|
driver:
|
||||||
name: dokken
|
name: dokken
|
||||||
privileged: true # because Docker and SystemD/Upstart
|
privileged: true # because Docker and SystemD/Upstart
|
||||||
@ -15,65 +16,65 @@ verifier:
|
|||||||
name: inspec
|
name: inspec
|
||||||
|
|
||||||
platforms:
|
platforms:
|
||||||
- name: amazonlinux
|
- name: amazonlinux
|
||||||
driver:
|
driver:
|
||||||
image: dokken/amazonlinux
|
image: dokken/amazonlinux
|
||||||
pid_one_command: /sbin/init
|
pid_one_command: /sbin/init
|
||||||
|
|
||||||
- name: amazonlinux-2
|
- name: amazonlinux-2
|
||||||
driver:
|
driver:
|
||||||
image: dokken/amazonlinux-2
|
image: dokken/amazonlinux-2
|
||||||
pid_one_command: /usr/lib/systemd/systemd
|
pid_one_command: /usr/lib/systemd/systemd
|
||||||
|
|
||||||
- name: debian-9
|
- name: debian-9
|
||||||
driver:
|
driver:
|
||||||
image: dokken/debian-9
|
image: dokken/debian-9
|
||||||
pid_one_command: /bin/systemd
|
pid_one_command: /bin/systemd
|
||||||
intermediate_instructions:
|
intermediate_instructions:
|
||||||
- RUN /usr/bin/apt-get update
|
- RUN /usr/bin/apt-get update
|
||||||
|
|
||||||
- name: debian-10
|
- name: debian-10
|
||||||
driver:
|
driver:
|
||||||
image: dokken/debian-10
|
image: dokken/debian-10
|
||||||
pid_one_command: /bin/systemd
|
pid_one_command: /bin/systemd
|
||||||
intermediate_instructions:
|
intermediate_instructions:
|
||||||
- RUN /usr/bin/apt-get update
|
- RUN /usr/bin/apt-get update
|
||||||
|
|
||||||
- name: centos-6
|
- name: centos-6
|
||||||
driver:
|
driver:
|
||||||
image: dokken/centos-6
|
image: dokken/centos-6
|
||||||
pid_one_command: /sbin/init
|
pid_one_command: /sbin/init
|
||||||
|
|
||||||
- name: centos-7
|
- name: centos-7
|
||||||
driver:
|
driver:
|
||||||
image: dokken/centos-7
|
image: dokken/centos-7
|
||||||
pid_one_command: /usr/lib/systemd/systemd
|
pid_one_command: /usr/lib/systemd/systemd
|
||||||
|
|
||||||
- name: centos-8
|
- name: centos-8
|
||||||
driver:
|
driver:
|
||||||
image: dokken/centos-8
|
image: dokken/centos-8
|
||||||
pid_one_command: /usr/lib/systemd/systemd
|
pid_one_command: /usr/lib/systemd/systemd
|
||||||
|
|
||||||
- name: fedora-latest
|
- name: fedora-latest
|
||||||
driver:
|
driver:
|
||||||
image: dokken/fedora-latest
|
image: dokken/fedora-latest
|
||||||
pid_one_command: /usr/lib/systemd/systemd
|
pid_one_command: /usr/lib/systemd/systemd
|
||||||
|
|
||||||
- name: ubuntu-16.04
|
- name: ubuntu-16.04
|
||||||
driver:
|
driver:
|
||||||
image: dokken/ubuntu-16.04
|
image: dokken/ubuntu-16.04
|
||||||
pid_one_command: /bin/systemd
|
pid_one_command: /bin/systemd
|
||||||
intermediate_instructions:
|
intermediate_instructions:
|
||||||
- RUN /usr/bin/apt-get update
|
- RUN /usr/bin/apt-get update
|
||||||
|
|
||||||
- name: ubuntu-18.04
|
- name: ubuntu-18.04
|
||||||
driver:
|
driver:
|
||||||
image: dokken/ubuntu-18.04
|
image: dokken/ubuntu-18.04
|
||||||
pid_one_command: /bin/systemd
|
pid_one_command: /bin/systemd
|
||||||
intermediate_instructions:
|
intermediate_instructions:
|
||||||
- RUN /usr/bin/apt-get update
|
- RUN /usr/bin/apt-get update
|
||||||
|
|
||||||
- name: opensuse-leap-15
|
- name: opensuse-leap-15
|
||||||
driver:
|
driver:
|
||||||
image: dokken/opensuse-leap-15
|
image: dokken/opensuse-leap-15
|
||||||
pid_one_command: /bin/systemd
|
pid_one_command: /bin/systemd
|
||||||
|
17
kitchen.yml
17
kitchen.yml
@ -1,3 +1,4 @@
|
|||||||
|
---
|
||||||
driver:
|
driver:
|
||||||
name: vagrant
|
name: vagrant
|
||||||
|
|
||||||
@ -29,23 +30,23 @@ platforms:
|
|||||||
run_list: apt::default
|
run_list: apt::default
|
||||||
|
|
||||||
suites:
|
suites:
|
||||||
- name: default
|
- name: default
|
||||||
run_list:
|
run_list:
|
||||||
- recipe[postfix]
|
- recipe[postfix]
|
||||||
|
|
||||||
- name: aliases
|
- name: aliases
|
||||||
run_list:
|
run_list:
|
||||||
- recipe[postfix::aliases]
|
- recipe[postfix::aliases]
|
||||||
|
|
||||||
- name: client
|
- name: client
|
||||||
run_list:
|
run_list:
|
||||||
- recipe[postfix::client]
|
- recipe[postfix::client]
|
||||||
|
|
||||||
- name: server
|
- name: server
|
||||||
run_list:
|
run_list:
|
||||||
- recipe[postfix::server]
|
- recipe[postfix::server]
|
||||||
|
|
||||||
- name: canonical
|
- name: canonical
|
||||||
run_list:
|
run_list:
|
||||||
- recipe[postfix]
|
- recipe[postfix]
|
||||||
attributes:
|
attributes:
|
||||||
@ -53,7 +54,7 @@ suites:
|
|||||||
recipient_canonical_map_entries:
|
recipient_canonical_map_entries:
|
||||||
john: john@doe.com
|
john: john@doe.com
|
||||||
|
|
||||||
- name: sasl_auth_none
|
- name: sasl_auth_none
|
||||||
run_list:
|
run_list:
|
||||||
- recipe[postfix::sasl_auth]
|
- recipe[postfix::sasl_auth]
|
||||||
attributes:
|
attributes:
|
||||||
@ -62,7 +63,7 @@ suites:
|
|||||||
relayhost: "localhost"
|
relayhost: "localhost"
|
||||||
smtp_sasl_auth_enable: "yes"
|
smtp_sasl_auth_enable: "yes"
|
||||||
|
|
||||||
- name: sasl_auth_multiple
|
- name: sasl_auth_multiple
|
||||||
run_list:
|
run_list:
|
||||||
- recipe[postfix::sasl_auth]
|
- recipe[postfix::sasl_auth]
|
||||||
attributes:
|
attributes:
|
||||||
@ -78,7 +79,7 @@ suites:
|
|||||||
username: "anotherkitchenuser"
|
username: "anotherkitchenuser"
|
||||||
password: "yet-not-a-real-thing"
|
password: "yet-not-a-real-thing"
|
||||||
|
|
||||||
- name: sasl_auth_one
|
- name: sasl_auth_one
|
||||||
run_list:
|
run_list:
|
||||||
- recipe[postfix::sasl_auth]
|
- recipe[postfix::sasl_auth]
|
||||||
attributes:
|
attributes:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user