mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
59044c43f9
Signed-off-by: Jared Quick <jquick@chef.io>
86 lines
1.8 KiB
YAML
86 lines
1.8 KiB
YAML
---
|
|
driver:
|
|
name: dokken
|
|
chef_version: 14.3.37
|
|
privileged: true # because Docker and SystemD/Upstart
|
|
|
|
transport:
|
|
name: dokken
|
|
|
|
provisioner:
|
|
name: dokken
|
|
|
|
verifier:
|
|
name: inspec
|
|
sudo: true
|
|
|
|
platforms:
|
|
- name: ubuntu-12.04
|
|
driver:
|
|
image: ubuntu:12.04
|
|
- name: ubuntu-14.04
|
|
driver:
|
|
image: ubuntu:14.04
|
|
- name: ubuntu-16.04
|
|
driver:
|
|
image: ubuntu:16.04
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
pid_one_command: /bin/systemd
|
|
- name: centos-6.6
|
|
driver:
|
|
image: centos:6.6
|
|
- name: centos-6.8
|
|
driver:
|
|
image: centos:6.8
|
|
intermediate_instructions:
|
|
- RUN yum install -y initscripts
|
|
- name: centos-7
|
|
driver:
|
|
image: centos:7
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
- name: oracle-6.7
|
|
driver:
|
|
image: oraclelinux:6.7
|
|
- name: oracle-7.2
|
|
driver:
|
|
image: oraclelinux:7.2
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
- name: debian-7
|
|
driver:
|
|
image: debian:7.11
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
# running it within the chef recipe is too late :-(
|
|
- RUN /usr/bin/apt-get install -y procps lsb-release
|
|
- name: debian-8
|
|
driver:
|
|
image: debian:8.5
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
# running it within the chef recipe is too late :-(
|
|
- RUN /usr/bin/apt-get install -y procps lsb-release
|
|
pid_one_command: /bin/systemd
|
|
- name: fedora-23
|
|
driver:
|
|
image: fedora:23
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
intermediate_instructions:
|
|
- RUN dnf install -y yum
|
|
- name: fedora-24
|
|
driver:
|
|
image: fedora:24
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
intermediate_instructions:
|
|
- RUN dnf install -y yum
|
|
|
|
suites:
|
|
- name: default
|
|
run_list:
|
|
- recipe[apt]
|
|
- recipe[yum]
|
|
- recipe[os_prepare]
|
|
attributes:
|
|
osprepare:
|
|
docker: true
|
|
application: false
|