mirror of
https://github.com/valitydev/salt-common.git
synced 2024-11-06 02:15:20 +00:00
3e3bf57471
prepare to systemd highstate compatible Co-authored-by: Antsiferov Grigory <azr@bakka.su>
13 lines
199 B
Plaintext
13 lines
199 B
Plaintext
{% if grains['init'] == 'openrc' %}
|
|
include:
|
|
- cron
|
|
- openrc
|
|
|
|
openrc_rc_cron_job:
|
|
cron.present:
|
|
- identifier: rc
|
|
- name: "/sbin/openrc"
|
|
- minute: '*/5'
|
|
- user: root
|
|
{% endif %}
|