2021-04-24 00:00:27 +02: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
|
|
|
|
|
2022-01-14 22:44:06 +01:00
|
|
|
# Debian Version, which will be installed
|
2023-06-24 19:37:13 +02:00
|
|
|
LXC_TEMPLATE_VERSION="debian-12-standard"
|
2022-01-14 22:44:06 +01:00
|
|
|
|
2021-04-24 00:00:27 +02:00
|
|
|
# Create sharefs mountpoint
|
2024-05-05 11:13:27 +02:00
|
|
|
LXC_MP=0
|
|
|
|
# Defines the mountpoint of the filesystem shared by Zamba inside your LXC container (default: tank)
|
|
|
|
LXC_SHAREFS_MOUNTPOINT="tank"
|
|
|
|
# Defines the recordsize of mp0
|
|
|
|
LXC_MP_RECORDSIZE="16K"
|
2021-04-24 00:00:27 +02:00
|
|
|
|
|
|
|
# Create unprivileged container
|
|
|
|
LXC_UNPRIVILEGED="1"
|
|
|
|
|
|
|
|
# enable nesting feature
|
2023-01-24 23:04:00 +01:00
|
|
|
LXC_NESTING="1"
|
|
|
|
|
2024-01-21 13:46:06 +01:00
|
|
|
# enable keyctl feature
|
|
|
|
LXC_KEYCTL="0"
|
|
|
|
|
2023-02-10 18:07:46 +01:00
|
|
|
# Sets the minimum amount of RAM the service needs for operation
|
|
|
|
LXC_MEM_MIN=512
|
|
|
|
|
2023-01-24 23:04:00 +01:00
|
|
|
# service dependent meta tags
|
|
|
|
SERVICE_TAGS=""
|