14 lines
271 B
YAML
Executable File
14 lines
271 B
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
# vim:ft=ansible:
|
|
---
|
|
- hosts: platforms_fedora-kinoite
|
|
gather_facts: no
|
|
roles:
|
|
- role: motd
|
|
vars:
|
|
motd_watch_services_extra:
|
|
- docker
|
|
- kubelet
|
|
- postgresql
|
|
tags: [ motd, common ]
|