breakout cron role

This commit is contained in:
Pig Monkey 2016-01-30 16:07:54 -08:00
parent 27064030a3
commit 157805398d
3 changed files with 1 additions and 5 deletions

View file

@ -3,6 +3,7 @@
become: yes
roles:
- { role: base, tags: ['base'] }
- { role: cron, tags: ['cron'] }
- { role: grsec, tags: ['grsec'] }
- { role: ssh, tags: ['ssh'] }
- { role: dotfiles, tags: ['dotfiles'] }

View file

@ -13,4 +13,3 @@
- include: user.yml
- include: sudo.yml
- include: packages.yml
- include: cron.yml

View file

@ -1,10 +1,6 @@
---
- name: Install cronie
pacman: name=cronie state=present
tags:
- cron
- name: Enable cronie
service: name=cronie.service enabled=yes state=started
tags:
- cron