Skip to content

Commit 7614a3c

Browse files
committed
feat(kitchen+travis): add opensuse-leap after resolving issues
* https://freenode.logbot.info/saltstack-formulas/20190221 - Various attempts and input between 1100-1437
1 parent 1348078 commit 7614a3c

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
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

3030
script:
3131
- bundle exec kitchen verify ${INSTANCE}

kitchen.yml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff 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`
1515
platforms:
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

5659
provisioner:
5760
name: salt_solo

0 commit comments

Comments
 (0)