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.
12345678910111213141516 |
- - name: Install logwatch
- apt: pkg={{ item }} state=installed
- with_items:
- - libdate-manip-perl
- - logwatch
- tags:
- - dependencies
-
- - name: Configure logwatch
- template: src=etc_logwatch_conf_logwatch.conf.j2 dest=/etc/logwatch/conf/logwatch.conf
-
- - name: Remove logwatch's dist cronjob
- file: state=absent path=/etc/cron.daily/00logwatch
-
- - name: Configure weekly logwatch cronjob
- cron: special_time=weekly job=/usr/sbin/logwatch name=logwatch
|