Repos with recipes to deploy some infrastructure services
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - name: Prepare the Molecule Test Resources
- hosts: pdns-rec
- tasks:
- # Install rsyslog to capture the PowerDNS Recursor log messages
- # when the service is not managed by systemd
- - block:
- - name: Install rsyslog
- package:
- name: rsyslog
- state: present
-
- - name: Start rsyslog
- service:
- name: rsyslog
- state: started
- when: ansible_facts.service_mgr != 'systemd'
|