Repos with recipes to deploy some infrastructure services
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- ---
-
- - 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'
|