From b6d42fb4f443efd9a7d13e92e3a1626fff6181ec Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Sat, 19 Mar 2022 02:36:35 -0400 Subject: [PATCH] fix eof for roles/motd/tasks/main.yml; version bump for galaxy --- galaxy.yml | 2 +- roles/motd/tasks/main.yml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/galaxy.yml b/galaxy.yml index 57c4fd6..033e0f9 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -8,7 +8,7 @@ namespace: jchristianh name: baseos # The version of the collection. Must be compatible with semantic versioning -version: 1.0.2 +version: 1.0.3 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/roles/motd/tasks/main.yml b/roles/motd/tasks/main.yml index 225f23a..f2efce6 100644 --- a/roles/motd/tasks/main.yml +++ b/roles/motd/tasks/main.yml @@ -16,3 +16,6 @@ dest: "{{ __motd_file }}" mode: 0644 changed_when: false + + +...