This repository has been archived on 2024-02-16. You can view files and clone it, but cannot push or open issues or pull requests.
sysconfig/roles/cron/tasks/busybox.yml
FollieHiyuki 72f10a2bdc
cron: fix things (mostly about fcron)
Document PATH behavior for each crond implementation.
2022-11-18 22:53:50 +07:00

9 lines
257 B
YAML

---
# busybox's crond already inherits PATH so no need to do anything.
# It doesn't have allow/deny feature though
- name: crond | Add crond service to runlevel 'default'
service:
name: crond
runlevel: default
enabled: true
state: started