Skip to content
This repository was archived by the owner on Jul 14, 2021. It is now read-only.

Commit 4bbd788

Browse files
authored
Merge pull request #39 from jaredledvina/fix/drop-package-manager-doc-override
Add Fedora Support back & drop docs override
2 parents fd369ba + 9875d19 commit 4bbd788

File tree

4 files changed

+12
-20
lines changed

4 files changed

+12
-20
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ env:
1111
matrix:
1212
fast_finish: true
1313
allow_failures:
14-
- env: SCENARIO=fedora # Unsupported, no Sensu Go packages
1514
- env: SCENARIO=debian # Unsupported, no Sensu Go packages
1615

1716
services: docker

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,10 @@ specifically test using the version of `Ansible` and `python` declared in the
8888
[Pipefile](https://github.com/jaredledvina/sensu-go-ansible/blob/master/Pipfile)
8989

9090
The following Operating Systems are automatically tested:
91+
- [Fedora - 26](https://docs.fedoraproject.org/en-US/fedora/f26/release-notes/)
92+
- [Fedora - 27](https://docs.fedoraproject.org/en-US/fedora/f27/release-notes/)
93+
- [Fedora - 28](https://docs.fedoraproject.org/en-US/fedora/f28/release-notes/)
94+
- [Fedora - 29](https://docs.fedoraproject.org/en-US/fedora/f29/release-notes/)
9195
- [Amazon Linux](https://aws.amazon.com/amazon-linux-ami/)
9296
- [Amazon Linux 2](https://aws.amazon.com/amazon-linux-2/)
9397
- [CentOS - 6](https://wiki.centos.org/Manuals/ReleaseNotes/CentOS6.10)
@@ -98,10 +102,6 @@ The following Operating Systems are automatically tested:
98102

99103
The following Operating Systems are currently unsupported until Sensu Go
100104
packages are officially published for them:
101-
- [Fedora - 26](https://docs.fedoraproject.org/en-US/fedora/f26/release-notes/)
102-
- [Fedora - 27](https://docs.fedoraproject.org/en-US/fedora/f27/release-notes/)
103-
- [Fedora - 28](https://docs.fedoraproject.org/en-US/fedora/f28/release-notes/)
104-
- [Fedora - 29](https://docs.fedoraproject.org/en-US/fedora/f29/release-notes/)
105105
- [Debian - 8 (Jessie)](https://wiki.debian.org/DebianJessie)
106106
- [Debian - 9 (Stretch)](https://wiki.debian.org/DebianStretch)
107107

meta/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ galaxy_info:
66
min_ansible_version: 2.7
77
github_branch: master
88
platforms:
9+
- name: Fedora
10+
versions:
11+
- 26
12+
- 27
13+
- 28
14+
- 29
915
- name: Amazon
1016
versions:
1117
- Candidate

molecule/shared/prepare.yml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,5 @@
11
---
22
- name: Prepare
33
hosts: all
4-
gather_facts: true
5-
tasks:
6-
- name: Enable yum doc files
7-
lineinfile:
8-
regexp: tsflags=nodocs
9-
path: /etc/yum.conf
10-
state: absent
11-
when: ansible_pkg_mgr == 'yum'
12-
13-
- name: Enable apt doc files
14-
lineinfile:
15-
regexp: 'path-exclude=/usr/share/doc/*'
16-
path: /etc/dpkg/dpkg.cfg.d/excludes
17-
state: absent
18-
when: ansible_pkg_mgr == 'apt'
4+
gather_facts: false
5+
tasks: []

0 commit comments

Comments
 (0)