ansible-roles/roles/common/templates/rc.local.j2
2021-12-01 19:13:34 +01:00

10 lines
106 B
Django/Jinja

#!/bin/bash
# {{ ansible_managed }}
{% for cmd in system_rc_local_cmd %}
{{ cmd }}
{% endfor %}
exit 0