Helps to add the file ^Cunix/ansible/issues/10

This commit is contained in:
~ubergeek 2018-12-21 18:22:22 -07:00
parent 0dbbbcf90c
commit 5b9f8db327
2 changed files with 20 additions and 0 deletions

11
roles/common/files/motd Normal file
View File

@ -0,0 +1,11 @@
.___________. __ __ __ __ .__ __. __ ___ ___
| || | | | | | | | | \ | | | | \ \ / /
`---| |----`| |__| | | | | | | \| | | | \ V /
| | | __ | | | | | | . ` | | | > <
| | | | | | | `--' | | |\ | | | / . \
|__| |__| |__| \______/ |__| \__| |__| /__/ \__\
EST DEC 2018
brought to you by:
Ubergeek
amcclure

View File

@ -0,0 +1,9 @@
# This will set our motd
---
- name: Set MOTD
copy:
src: ../files/motd
dest: /etc/motd
owner: root
group: root
mode: 0644