bundles/cron: ensure cron is installed and running

This commit is contained in:
Franzi 2021-07-02 06:36:51 +02:00
parent a2501ed2cb
commit 7ac7c1a2b7
Signed by: kunsi
GPG key ID: 12E3D2136B818350
2 changed files with 27 additions and 0 deletions

12
bundles/cron/metadata.py Normal file
View file

@ -0,0 +1,12 @@
defaults = {
'apt': {
'packages': {
'cron': {},
},
},
'pacman': {
'packages': {
'cronie': {},
},
},
}