Add option for not configuring MOTD

This commit is contained in:
Tyler Hale 2022-08-22 13:35:30 -06:00
parent 67032f2dc7
commit 44d7644dfe
Signed by: Tyler
GPG key ID: C7CC4B910D88EF96
2 changed files with 41 additions and 35 deletions

View file

@ -32,6 +32,9 @@ base_core_timezone: "America/Boise"
# MOTD
# ====
# Banner to add to MOTD
base_core_motd_enabled: true
# Banner to add to MOTD
base_core_motd_banner: ""

View file

@ -1,6 +1,8 @@
---
# file: roles/base/tasks/core_motd.yml
- name: "Configure standard MOTD"
block:
- name: Disable unnecessary MOTD files
file:
path: "{{ item }}"
@ -40,3 +42,4 @@
line: PrintMotd no
notify:
- Restart SSH
when: base_core_motd_enabled == true