Add cronie for void
This commit is contained in:
@@ -9,6 +9,8 @@ common_apt_upgrade_policy: ""
|
|||||||
common_xbps: False
|
common_xbps: False
|
||||||
common_xbps_upgrade_policy: True
|
common_xbps_upgrade_policy: True
|
||||||
|
|
||||||
|
common_cronie: True
|
||||||
|
|
||||||
common_hostname: True
|
common_hostname: True
|
||||||
common_hostname_hosts_additional: []
|
common_hostname_hosts_additional: []
|
||||||
|
|
||||||
|
|||||||
6
tasks/cronie.yml
Normal file
6
tasks/cronie.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- name: cronie - install cronie
|
||||||
|
package: name=cronie
|
||||||
|
|
||||||
|
- name: cronie - start runit service
|
||||||
|
service: name=cronie state=started enabled=yes
|
||||||
@@ -15,6 +15,10 @@
|
|||||||
when: common_xbps
|
when: common_xbps
|
||||||
tags: ['common', 'xbps']
|
tags: ['common', 'xbps']
|
||||||
|
|
||||||
|
- import_tasks: cronie.yml
|
||||||
|
when: common_cronie and (ansible_distribution != 'Debian' or ansible_distribution != 'Ubuntu')
|
||||||
|
tags: ['common', 'cronie']
|
||||||
|
|
||||||
- import_tasks: locales.yml
|
- import_tasks: locales.yml
|
||||||
when: common_locales
|
when: common_locales
|
||||||
tags: ['common', 'locales']
|
tags: ['common', 'locales']
|
||||||
|
|||||||
Reference in New Issue
Block a user