Add logging;Move iso-file specifics to variable file;Housekeeping
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-06-10 11:39:42 +02:00
parent 990534618b
commit f40889370d
6 changed files with 27 additions and 6 deletions

View File

@ -1,5 +1,5 @@
---
- hosts: localhost
- hosts: 127.0.0.1
connection: local
gather_facts: false
# become: true

View File

@ -0,0 +1,5 @@
- name: Enable crontab logging
ansible.builtin.lineinfile:
path: /etc/rsyslog.d/50-default.conf
regexp: '^#cron\.\*.*'
line: "cron.*\t\t\t\t./var/log/cron.log'

View File

@ -4,6 +4,9 @@
- name: Remove cloud-init
import_tasks: cloud-init.yml
- name: Configure default logging
import_tasks: logging.yml
- name: Configure services
import_tasks: services.yml