add syslog playbook for future use

This commit is contained in:
Louis Abel 2023-12-22 14:30:08 -07:00
parent 07385b97d4
commit 9241bea415
Signed by: label
GPG Key ID: 3331F061D1D9990E
2 changed files with 8 additions and 0 deletions

View File

@ -53,6 +53,9 @@
- name: Configure common skel items
ansible.builtin.import_tasks: tasks/skel.yml
- name: Configure syslog
ansible.builtin.import_tasks: tasks/syslog.yml
- name: Configure tlog for secure systems
import_tasks: tasks/tlog.yml
when: "'secureboot' in group_names"

5
tasks/syslog.yml Normal file
View File

@ -0,0 +1,5 @@
---
- name: Notice
ansible.builtin.debug:
msg: "Nothing to do yet"
...