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

35 lines
973 B
Plaintext
Raw Normal View History

2025-07-23 11:52:54 +02:00
#!/bin/bash
2025-07-23 12:03:21 +02:00
2025-07-24 22:59:37 +02:00
# 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>
2025-07-23 12:03:21 +02:00
2025-07-24 22:59:37 +02:00
# This file contains the project constants on service level
2025-07-23 12:03:21 +02:00
2025-07-24 22:59:37 +02:00
# Debian Version, which will be installed
2025-07-23 12:33:27 +02:00
LXC_TEMPLATE_VERSION="debian-12-standard"
2025-07-23 12:03:21 +02:00
2025-07-24 22:59:37 +02:00
# Create sharefs mountpoint
LXC_MP=0
# Defines the mountpoint of the filesystem shared by Zamba inside your LXC container (default: tank)
2025-07-23 12:33:27 +02:00
LXC_SHAREFS_MOUNTPOINT="tank"
2025-07-24 22:59:37 +02:00
# Defines the recordsize of mp0
2025-07-23 12:33:27 +02:00
LXC_MP_RECORDSIZE="16K"
2025-07-24 22:59:37 +02:00
# Create unprivileged container
LXC_UNPRIVILEGED="1"
2025-07-23 12:33:27 +02:00
2025-07-24 22:59:37 +02:00
# enable nesting feature
LXC_NESTING="1"
2025-07-23 11:52:54 +02:00
2025-07-24 22:59:37 +02:00
# enable keyctl feature
LXC_KEYCTL="0"
2025-07-23 12:04:42 +02:00
2025-07-24 22:59:37 +02:00
# Sets the minimum amount of RAM the service needs for operation
LXC_MEM_MIN=1024
2025-07-23 12:33:27 +02:00
2025-07-24 22:59:37 +02:00
# service dependent meta tags
SERVICE_TAGS="php-fpm,nginx,mariadb"
2025-07-23 12:33:27 +02:00
2025-07-24 22:59:37 +02:00
CRED_FILE="/root/.zamba_credentials/icinga_stack.txt"