2022-01-14 22:44:06 +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
|
2022-05-21 19:31:36 +02:00
|
|
|
LXC_TEMPLATE_VERSION="debian-11-standard"
|
2022-01-14 22:44:06 +01:00
|
|
|
|
|
|
|
# Create sharefs mountpoint
|
|
|
|
LXC_MP="1"
|
|
|
|
|
|
|
|
# Create unprivileged container
|
|
|
|
LXC_UNPRIVILEGED="1"
|
|
|
|
|
|
|
|
# enable nesting feature
|
2022-01-14 23:26:57 +01:00
|
|
|
LXC_NESTING="1"
|
2022-01-14 22:44:06 +01:00
|
|
|
|
|
|
|
# Backup ubdir where Urbackup will store backups
|
2022-01-15 16:34:45 +01:00
|
|
|
URBACKUP_DATA="urbackup"
|
|
|
|
|
|
|
|
# OS codename for opensuse / urbackup repo
|
2022-05-21 19:31:36 +02:00
|
|
|
REPO_CODENAME="Debian_11"
|