From 0261e875679f1bf63c8d689da7fc7e014597885d Mon Sep 17 00:00:00 2001 From: Stonewall Jackson Date: Sat, 4 Feb 2023 01:23:43 -0500 Subject: initial commit --- roles/motd/tasks/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 roles/motd/tasks/main.yml (limited to 'roles/motd') diff --git a/roles/motd/tasks/main.yml b/roles/motd/tasks/main.yml new file mode 100644 index 0000000..b92ff30 --- /dev/null +++ b/roles/motd/tasks/main.yml @@ -0,0 +1,10 @@ +- name: create /etc/motd.d + file: + path: /etc/motd.d + state: directory + +- name: remove cockpit message + file: + src: /dev/null + dest: /etc/motd.d/cockpit + state: link -- cgit