ansible-roles/roles/common/templates/rc.local.j2

10 lines
106 B
Plaintext
Raw Normal View History

2021-12-01 19:13:34 +01:00
#!/bin/bash
# {{ ansible_managed }}
{% for cmd in system_rc_local_cmd %}
{{ cmd }}
{% endfor %}
exit 0