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

10 lines
115 B
Plaintext
Raw Normal View History

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