diff options
Diffstat (limited to 'bundles/calibre/items.py')
| -rw-r--r-- | bundles/calibre/items.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/bundles/calibre/items.py b/bundles/calibre/items.py new file mode 100644 index 0000000..849636e --- /dev/null +++ b/bundles/calibre/items.py @@ -0,0 +1,26 @@ +files = { + "/etc/deployments/calibre/kube.yaml": { + "content_type": "mako", + "context": node.metadata.get("containers")["calibre"], + "triggers": {"svc_s6rc:calibre:restart"}, + }, +} + +directories = { + "/var/lib/calibre/config": { + "owner": "robert", + "group": "robert", + }, + "/var/lib/calibre/config/.config/calibre": { + "owner": "robert", + "group": "robert", + }, + "/var/lib/calibre/inbox": { + "owner": "robert", + "group": "robert", + }, + "/var/lib/calibre/plugins": { + "owner": "robert", + "group": "robert", + }, +} |