Files
zamba-lxc-toolbox/src/mailcow/constants-service.conf

33 lines
905 B
Plaintext
Raw Normal View History

2024-01-21 21:45:13 +01:00
#!/bin/bash
# Authors:
# (C) 2021 Idea an concept by Christian Zengel <christian@sysops.de>
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.de>
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
# This file contains the project constants on service level
# Debian Version, which will be installed
2026-01-06 11:35:44 +00:00
LXC_TEMPLATE_VERSION="debian-13-standard"
2024-01-21 21:45:13 +01:00
# Create sharefs mountpoint
2024-05-05 11:13:27 +02:00
LXC_MP=1
# Defines the mountpoint of the filesystem shared by Zamba inside your LXC container (default: tank)
2025-04-28 12:43:14 +02:00
LXC_SHAREFS_MOUNTPOINT="backup"
2024-05-05 11:13:27 +02:00
# Defines the recordsize of mp0
LXC_MP_RECORDSIZE="16K"
2024-01-21 21:45:13 +01:00
# Create unprivileged container
LXC_UNPRIVILEGED="1"
# enable nesting feature
LXC_NESTING="1"
# enable keyctl feature
LXC_KEYCTL="1"
# Sets the minimum amount of RAM the service needs for operation
LXC_MEM_MIN=8192
# service dependent meta tags
SERVICE_TAGS="docker"