Skip to content

Commit 326ca9d

Browse files
committed
Added fedora26
1 parent 1a4efea commit 326ca9d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

ansible/inventory.yml

+2
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ hosts:
8787
fedora24-x64-1: {ip: 104.236.112.180}
8888
fedora25-x64-1: {ip: 159.203.101.158}
8989
fedora25-x64-2: {ip: 159.203.126.232}
90+
fedora26-x64-1: {ip: 178.62.236.249}
9091
freebsd10-x64-1: {ip: 159.203.59.134, user: freebsd}
9192
freebsd11-x64-1: {ip: 45.55.90.237, user: freebsd}
9293
freebsd11-x64-2: {ip: 107.170.28.213, user: freebsd}
@@ -144,6 +145,7 @@ hosts:
144145
fedora22-x64-1: {ip: 119.9.51.79}
145146
fedora23-x64-1: {ip: 119.9.51.113}
146147
fedora24-x64-1: {ip: 119.9.51.165}
148+
fedora26-x64-1: {ip: 119.9.52.113}
147149
freebsd10-x64-1: {ip: 119.9.52.218}
148150
ubuntu1204_clang341-x64-1: {ip: 119.9.51.210}
149151
ubuntu1604-x64-1: {ip: 119.9.51.176}

ansible/roles/bootstrap/tasks/partials/fedora.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@
1717
raw: dnf install -y python2 python2-dnf
1818

1919
- name: check for libselinux-python bindings
20-
when: os in ("fedora24", "fedora25")
20+
when: os in ("fedora24", "fedora25", "fedora26")
2121
raw: dnf info libselinux-python | grep Installed
2222
register: has_libselinux
2323
failed_when: has_libselinux.rc > 1
2424

2525
- name: install libselinux-python bindings
26-
when: os in ("fedora24", "fedora25") and has_libselinux.rc == 1
26+
when: os in ("fedora24", "fedora25", "fedora26") and has_libselinux.rc == 1
2727
raw: dnf install -y libselinux-python
2828

2929
- name: disable selinux
30-
when: os in ("fedora24", "fedora25")
30+
when: os in ("fedora24", "fedora25", "fedora26")
3131
selinux: state=disabled
3232
# this should be done. not sure how to make it properly/gracefully
3333
# notify: reboot host

0 commit comments

Comments
 (0)