bundles/miniflux: introduce
This commit is contained in:
parent
366374b4e5
commit
ececab44b4
6 changed files with 89 additions and 13 deletions
30
bundles/miniflux/items.py
Normal file
30
bundles/miniflux/items.py
Normal file
|
@ -0,0 +1,30 @@
|
|||
files = {
|
||||
'/etc/miniflux.conf': {
|
||||
'content_type': 'mako',
|
||||
'context': {
|
||||
'dbpassword': node.metadata['postgresql']['users']['miniflux']['password'],
|
||||
'base_url': node.metadata['miniflux']['domain'],
|
||||
},
|
||||
'triggers': {
|
||||
'svc_systemd:miniflux:restart',
|
||||
},
|
||||
},
|
||||
'/etc/systemd/system/miniflux.service.d/bundlewrap.conf': {
|
||||
'source': 'override.conf',
|
||||
'triggers': {
|
||||
'action:systemd-reload',
|
||||
'svc_systemd:miniflux:restart',
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
svc_systemd = {
|
||||
'miniflux': {
|
||||
'needs': {
|
||||
'file:/etc/miniflux.conf',
|
||||
'file:/etc/systemd/system/miniflux.service.d/bundlewrap.conf',
|
||||
'pkg_apt:miniflux',
|
||||
'postgres_role:miniflux',
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue