Skip to content
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ If you use the zabbix monitoring profile you will need the role [ansible-zabbix-

## OS Family

This role is available for Debian
This role is available for Debian-like and RedHat-like Distros

## Features

Expand Down
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

- name: Check role availability
fail:
msg: 'This module only works on Debian or derivatives like Ubuntu'
when: ansible_os_family != 'Debian'
msg: 'This module only works on Debian, RHEL, or their derivatives like Ubuntu, CentOS'
when: ansible_os_family not in ['Debian', 'RedHat']
tags: ['always']

- name: Import init tasks
Expand Down