File tree Expand file tree Collapse file tree 2 files changed +15
-12
lines changed
Expand file tree Collapse file tree 2 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 2525 - INSTANCE : default-centos-7
2626 # - INSTANCE: default-centos-6
2727 - INSTANCE : default-fedora
28- # - INSTANCE: default-opensuse-leap
28+ - INSTANCE : default-opensuse-leap
2929
3030script :
3131 - bundle exec kitchen verify ${INSTANCE}
Original file line number Diff line number Diff line change @@ -13,27 +13,28 @@ driver_config:
1313# Make sure the platforms listed below match up with
1414# the `env.matrix` instances defined in `.travis.yml`
1515platforms :
16+ # The `run_command` used for each platform is required to
17+ # test `systemd` services in docker
1618 - name : debian-9
1719 driver_config :
18- # This run_command is required to test systemd services in docker
1920 run_command : /lib/systemd/systemd
2021 provision_command :
21- - apt install udev -y
22+ - apt install -y udev
2223 - name : debian-8
2324 driver_config :
2425 run_command : /lib/systemd/systemd
2526 provision_command :
26- - apt install udev -y
27+ - apt install -y udev
2728 - name : ubuntu-18.04
2829 driver_config :
2930 run_command : /lib/systemd/systemd
3031 provision_command :
31- - apt install udev -y
32+ - apt install -y udev
3233 - name : ubuntu-16.04
3334 driver_config :
3435 run_command : /lib/systemd/systemd
3536 provision_command :
36- - apt install udev -y
37+ - apt install -y udev
3738 - name : centos-7
3839 driver_config :
3940 image : centos:7
@@ -44,14 +45,16 @@ platforms:
4445 # run_command: /usr/lib/systemd/systemd
4546 - name : fedora
4647 driver_config :
47- image : fedora
4848 run_command : /usr/lib/systemd/systemd
4949 provision_command :
50- - yum install udev -y
51- # - name: opensuse-leap
52- # driver_config:
53- # image: opensuse/leap
54- # run_command: /usr/lib/systemd/systemd
50+ - yum install -y udev
51+ - name : opensuse-leap
52+ driver_config :
53+ image : opensuse/leap
54+ run_command : /usr/lib/systemd/systemd
55+ provision_command :
56+ - zypper install -y udev
57+ - systemctl enable sshd.service
5558
5659provisioner :
5760 name : salt_solo
You can’t perform that action at this time.
0 commit comments