Skip to content
This repository has been archived by the owner on Aug 18, 2023. It is now read-only.

Support Devuan OS and sysvinit service. #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .kitchen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,30 @@ platforms:
- SSH_KEY=<%= File.read('.kitchen/docker_id_rsa.pub') %>
run_command: /lib/systemd/systemd

- name: devuan-2
driver_config:
build_options:
build-arg:
- DOCKER_IMAGE_NAME=mesaguy/devuan-2-kitchen-ansible-x86_64:latest
- SSH_KEY=<%= File.read('.kitchen/docker_id_rsa.pub') %>
run_command: /sbin/init

- name: devuan-3
driver_config:
build_options:
build-arg:
- DOCKER_IMAGE_NAME=mesaguy/devuan-3-kitchen-ansible-x86_64:latest
- SSH_KEY=<%= File.read('.kitchen/docker_id_rsa.pub') %>
run_command: /sbin/init

- name: devuan-4
driver_config:
build_options:
build-arg:
- DOCKER_IMAGE_NAME=mesaguy/devuan-4-kitchen-ansible-x86_64:latest
- SSH_KEY=<%= File.read('.kitchen/docker_id_rsa.pub') %>
run_command: /sbin/init

- name: fedora-20
driver_config:
build_options:
Expand Down
25 changes: 13 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,19 @@ This role can register client exporters with the Prometheus server/s automatical
### Supported Operating Systems, Distributions, and Architectures
This module is intended to support as many distributions and architectures as possible. The following table specifies which combinations are currently tested. Most exporters will also work on ARM architectures:

| OS | Release | Architectures |
|----------------|-----------------------------------------|-------------------|
|Alpine |3.2 through 3.11, edge | x86_64 (amd64) |
|AmazonLinux |1 and 2 | x86_64 (amd64) |
|ArchLinux |Current | x86_64 (amd64) |
|Enterprise Linux|6, 7, 8 | x86_64 (amd64) |
|Fedora |20 through 31, rawhide | x86_64 (amd64) |
|Gentoo (openrc) |Current | x86_64 (amd64) |
|Gentoo (systemd)|Current | x86_64 (amd64) |
|OpenSUSE |13.1 through tumbleweed | x86_64 (amd64) |
|Oracle Linux |6, 7, 8 | x86_64 (amd64) |
|Ubuntu |16.04 through 20.04 | x86_64 (amd64) |
| OS | Release | Architectures |
|------------------|-------------------------|----------------|
| Alpine | 3.2 through 3.11, edge | x86_64 (amd64) |
| AmazonLinux | 1 and 2 | x86_64 (amd64) |
| ArchLinux | Current | x86_64 (amd64) |
| Devuan | 2 through 4 | x86_64 (amd64) |
| Enterprise Linux | 6, 7, 8 | x86_64 (amd64) |
| Fedora | 20 through 31, rawhide | x86_64 (amd64) |
| Gentoo (openrc) | Current | x86_64 (amd64) |
| Gentoo (systemd) | Current | x86_64 (amd64) |
| OpenSUSE | 13.1 through tumbleweed | x86_64 (amd64) |
| Oracle Linux | 6, 7, 8 | x86_64 (amd64) |
| Ubuntu | 16.04 through 20.04 | x86_64 (amd64) |

### Managed Prometheus software
The following core Prometheus software is supported in addition to the list of exporters below. This software is fully tested on all supported OS, distributions, and architectures.
Expand Down
5 changes: 5 additions & 0 deletions meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ galaxy_info:
versions:
- stretch
- buster
- name: Devuan
versions:
- ascii
- beowulf
- chimaera
- name: EL
versions:
- 6
Expand Down
1 change: 1 addition & 0 deletions tasks/_service_mgr_sysvinit.yml
1 change: 1 addition & 0 deletions templates/daemon-sysvinit.j2