aboutsummaryrefslogtreecommitdiffstats
path: root/tasks/motd.yml
blob: 868db5c262ccee3223b5b7e44d30084a641f6e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# This playbook distribute a default motd file. 
#
# Copyright (c) 2013-2018 Fabian Affolter <fabian@affolter-engineering.ch>
#
# Licensed under CC BY 3.0. All rights reserved.
#
---
- name: put a default motd file in place
  template:
    src: files/motd.j2
    dest: /etc/motd
    owner: root
    group: root
    mode: 0644
    backup: yes