salt-common/sls/openrc/cronjob.sls
Alexander Miroshnichenko 3e3bf57471
prepare to systemd highstate compatible (#130)
prepare to systemd highstate compatible

Co-authored-by: Antsiferov Grigory <azr@bakka.su>
2020-12-01 15:10:50 +03:00

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 %}