Cron

Document Control

TODO:

  • Overall structure.
  • Initial draft complete
  • Testing
  • Ready

Ansible Role Ansible Quality Score Build Status GitHub issues GitHub last commit

User Story: Cron

As a: UNIX and Linux system administrator

I want to: schedule tasks

So that: I can manage cron using Ansible.

Using the role

Using the role in a playbook
---
- name: Install cron
  hosts: all

  tasks:
    - name: cron is configured
      import_role:
        name: devopstoolbox.cron
      vars:
        cron_enable_service: true
      tags: cron
# Install the role
ansible-galaxy install devopstoolbox.cron

# Run the playbook
ansible-playbook cron-playbook.yml

Last update: 2020-02-09