45 lines
852 B
YAML
45 lines
852 B
YAML
me: dokken
|
|
privileged: true # because Docker and SystemD/Upstart
|
|
chef_image: chef/chef
|
|
chef_version: current
|
|
|
|
transport:
|
|
name: dokken
|
|
|
|
provisioner:
|
|
name: dokken
|
|
|
|
platforms:
|
|
- name: debian-7
|
|
driver:
|
|
image: debian:7
|
|
pid_one_command: /sbin/init
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
- name: debian-8
|
|
driver:
|
|
image: debian:8
|
|
pid_one_command: /bin/systemd
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
- name: ubuntu-14.04
|
|
driver:
|
|
image: ubuntu-upstart:14.04
|
|
pid_one_command: /sbin/init
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
- name: ubuntu-16.04
|
|
driver:
|
|
image: ubuntu:16.04
|
|
pid_one_command: /bin/systemd
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
suites:
|
|
- name: default
|
|
run_list:
|
|
- recipe[ipfs]
|