Browse Source

Added OS version check

merge-requests/1/merge
Christoph Haas 6 years ago
parent
commit
0c06d0164d
1 changed files with 12 additions and 2 deletions
  1. +12
    -2
      ansible/ispmail.yml

+ 12
- 2
ansible/ispmail.yml View File

@@ -1,8 +1,18 @@
--- ---
# Requires Ansible >= 1.9
# Check that this system is Debian Buster.
# Other Debian derivates may work but are untested.

- hosts: all
tasks:
- name: "Checking operating system version"
assert:
that: ansible_distribution_release == 'buster'
fail_msg: 'This Ansible playbook is only supported on Debian Buster.'
success_msg: 'Debian Buster found - that makes me happy.'

- hosts: all - hosts: all
roles: roles:
- dumpvars
#- dumpvars
- ispmail-packages - ispmail-packages
- ispmail-certificate - ispmail-certificate
- ispmail-database - ispmail-database


Loading…
Cancel
Save