additional course material RH294
Student User
2020-02-19 26d781da63ad0368921d6a0eb1f5efcb9bc479d1
commit | author | age
97d9af 1 ---
SU 2 - name: Simple play for class DO407 which introduces j2 templates
3   hosts: server
4   become: true
5   tasks:
6     - name: use template to create /etc/motd
7       template:
8         src: motd.j2
9         dest: /etc/motd
10
11
12