forked from bashclub/zamba-lxc-toolbox
Integrated shellcheck changes by @fbartels
This commit is contained in:
parent
bc2640c6dd
commit
5b01d9b1c7
50
install.sh
50
install.sh
@ -1,4 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
# This script will create and fire up a standard debian buster lxc container on your Proxmox VE.
|
# This script will create and fire up a standard debian buster lxc container on your Proxmox VE.
|
||||||
# On a Proxmox cluster, the script will create the container on the local node, where it's executed.
|
# On a Proxmox cluster, the script will create the container on the local node, where it's executed.
|
||||||
@ -15,7 +16,7 @@
|
|||||||
# Please adjust th settings in 'zamba.conf' to your needs before running the script
|
# Please adjust th settings in 'zamba.conf' to your needs before running the script
|
||||||
|
|
||||||
############### ZAMBA INSTALL SCRIPT ###############
|
############### ZAMBA INSTALL SCRIPT ###############
|
||||||
prog="$(basename "$0")"
|
prog="$(basename $0)"
|
||||||
|
|
||||||
usage() {
|
usage() {
|
||||||
cat >&2 <<-EOF
|
cat >&2 <<-EOF
|
||||||
@ -36,7 +37,6 @@ usage() {
|
|||||||
ctid=0
|
ctid=0
|
||||||
service=ask
|
service=ask
|
||||||
config=$PWD/conf/zamba.conf
|
config=$PWD/conf/zamba.conf
|
||||||
verbose=0
|
|
||||||
|
|
||||||
while getopts "hi:s:c:" opt; do
|
while getopts "hi:s:c:" opt; do
|
||||||
case $opt in
|
case $opt in
|
||||||
@ -49,13 +49,13 @@ while getopts "hi:s:c:" opt; do
|
|||||||
done
|
done
|
||||||
shift $((OPTIND-1))
|
shift $((OPTIND-1))
|
||||||
|
|
||||||
OPTS=$(ls -d $PWD/src/*/ | grep -v __ | xargs basename -a)
|
OPTS=$(find src/ -maxdepth 1 -mindepth 1 -type d -exec basename -a {} + | sort -n)
|
||||||
|
|
||||||
valid=0
|
valid=0
|
||||||
if [[ "$service" == "ask" ]]; then
|
if [[ "$service" == "ask" ]]; then
|
||||||
select svc in $OPTS quit; do
|
select svc in $OPTS quit; do
|
||||||
if [[ "$svc" != "quit" ]]; then
|
if [[ "$svc" != "quit" ]]; then
|
||||||
for line in $(echo $OPTS); do
|
for line in $OPTS; do
|
||||||
if [[ "$svc" == "$line" ]]; then
|
if [[ "$svc" == "$line" ]]; then
|
||||||
service=$svc
|
service=$svc
|
||||||
echo "Installation of $service selected."
|
echo "Installation of $service selected."
|
||||||
@ -72,7 +72,7 @@ if [[ "$service" == "ask" ]]; then
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
for line in $(echo $OPTS); do
|
for line in $OPTS; do
|
||||||
if [[ "$service" == "$line" ]]; then
|
if [[ "$service" == "$line" ]]; then
|
||||||
echo "Installation of $service selected."
|
echo "Installation of $service selected."
|
||||||
valid=1
|
valid=1
|
||||||
@ -88,9 +88,16 @@ fi
|
|||||||
|
|
||||||
# Load configuration file
|
# Load configuration file
|
||||||
echo "Loading config file '$config'..."
|
echo "Loading config file '$config'..."
|
||||||
source $config
|
if [ ! -e "$config" ]; then
|
||||||
|
echo "Configuration files does not exist"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
source $PWD/src/$service/constants-service.conf
|
source "src/functions.sh"
|
||||||
|
|
||||||
|
source "$config"
|
||||||
|
|
||||||
|
source "$PWD/src/$service/constants-service.conf"
|
||||||
|
|
||||||
# CHeck is the newest template available, else download it.
|
# CHeck is the newest template available, else download it.
|
||||||
DEB_LOC=$(pveam list $LXC_TEMPLATE_STORAGE | grep $LXC_TEMPLATE_VERSION | tail -1 | cut -d'_' -f2)
|
DEB_LOC=$(pveam list $LXC_TEMPLATE_STORAGE | grep $LXC_TEMPLATE_VERSION | tail -1 | cut -d'_' -f2)
|
||||||
@ -99,7 +106,7 @@ TMPL_NAME=$(pveam available --section system | grep $LXC_TEMPLATE_VERSION | tail
|
|||||||
|
|
||||||
if [[ $DEB_LOC == $DEB_REP ]];
|
if [[ $DEB_LOC == $DEB_REP ]];
|
||||||
then
|
then
|
||||||
echo "Newest Version of $LXC_TEMPLATE_VERSION $DEP_REP exists.";
|
echo "Newest Version of $LXC_TEMPLATE_VERSION $DEB_REP exists.";
|
||||||
else
|
else
|
||||||
echo "Will now download newest $LXC_TEMPLATE_VERSION $DEP_REP.";
|
echo "Will now download newest $LXC_TEMPLATE_VERSION $DEP_REP.";
|
||||||
pveam download $LXC_TEMPLATE_STORAGE $TMPL_NAME
|
pveam download $LXC_TEMPLATE_STORAGE $TMPL_NAME
|
||||||
@ -121,17 +128,17 @@ fi
|
|||||||
echo "Will now create LXC Container $LXC_NBR!";
|
echo "Will now create LXC Container $LXC_NBR!";
|
||||||
|
|
||||||
# Create the container
|
# Create the container
|
||||||
pct create $LXC_NBR -unprivileged $LXC_UNPRIVILEGED $LXC_TEMPLATE_STORAGE:vztmpl/$TMPL_NAME -rootfs $LXC_ROOTFS_STORAGE:$LXC_ROOTFS_SIZE;
|
pct create $LXC_NBR --password $LXC_PWD -unprivileged $LXC_UNPRIVILEGED $LXC_TEMPLATE_STORAGE:vztmpl/$TMPL_NAME -rootfs $LXC_ROOTFS_STORAGE:$LXC_ROOTFS_SIZE;
|
||||||
sleep 2;
|
sleep 2;
|
||||||
|
|
||||||
# Check vlan configuration
|
# Check vlan configuration
|
||||||
if [[ $LXC_VLAN != "" ]];then VLAN=",tag=$LXC_VLAN"; else VLAN=""; fi
|
if [[ $LXC_VLAN != "NONE" ]];then VLAN=",tag=$LXC_VLAN"; else VLAN=""; fi
|
||||||
# Reconfigure conatiner
|
# Reconfigure conatiner
|
||||||
pct set $LXC_NBR -memory $LXC_MEM -swap $LXC_SWAP -hostname $LXC_HOSTNAME -onboot 1 -timezone $LXC_TIMEZONE -features nesting=$LXC_NESTING;
|
pct set $LXC_NBR -memory $LXC_MEM -swap $LXC_SWAP -hostname $LXC_HOSTNAME -onboot 1 -timezone $LXC_TIMEZONE -features nesting=$LXC_NESTING;
|
||||||
if [ $LXC_DHCP == true ]; then
|
if [ $LXC_DHCP == true ]; then
|
||||||
pct set $LXC_NBR -net0 name=eth0,bridge=$LXC_BRIDGE,ip=dhcp,type=veth$VLAN;
|
pct set $LXC_NBR -net0 "name=eth0,bridge=$LXC_BRIDGE,ip=dhcp,type=veth$VLAN"
|
||||||
else
|
else
|
||||||
pct set $LXC_NBR -net0 name=eth0,bridge=$LXC_BRIDGE,firewall=1,gw=$LXC_GW,ip=$LXC_IP,type=veth$VLAN -nameserver $LXC_DNS -searchdomain $LXC_DOMAIN;
|
pct set $LXC_NBR -net0 "name=eth0,bridge=$LXC_BRIDGE,firewall=1,gw=$LXC_GW,ip=$LXC_IP,type=veth$VLAN" -nameserver $LXC_DNS -searchdomain $LXC_DOMAIN
|
||||||
fi
|
fi
|
||||||
sleep 2
|
sleep 2
|
||||||
|
|
||||||
@ -144,15 +151,15 @@ PS3="Select the Server-Function: "
|
|||||||
|
|
||||||
pct start $LXC_NBR;
|
pct start $LXC_NBR;
|
||||||
sleep 5;
|
sleep 5;
|
||||||
# Set the root password and key
|
# Set the root ssh key
|
||||||
echo -e "$LXC_PWD\n$LXC_PWD" | lxc-attach -n$LXC_NBR passwd;
|
pct exec $LXC_NBR -- mkdir /root/.ssh
|
||||||
lxc-attach -n$LXC_NBR mkdir /root/.ssh;
|
|
||||||
pct push $LXC_NBR $LXC_AUTHORIZED_KEY /root/.ssh/authorized_keys
|
pct push $LXC_NBR $LXC_AUTHORIZED_KEY /root/.ssh/authorized_keys
|
||||||
pct push $LXC_NBR $config /root/zamba.conf
|
pct push $LXC_NBR "$config" /root/zamba.conf
|
||||||
pct push $LXC_NBR $PWD/src/constants.conf /root/constants.conf
|
pct push $LXC_NBR "$PWD/src/functions.sh" /root/functions.sh
|
||||||
pct push $LXC_NBR $PWD/src/lxc-base.sh /root/lxc-base.sh
|
pct push $LXC_NBR "$PWD/src/constants.conf" /root/constants.conf
|
||||||
pct push $LXC_NBR $PWD/src/$service/install-service.sh /root/install-service.sh
|
pct push $LXC_NBR "$PWD/src/lxc-base.sh" /root/lxc-base.sh
|
||||||
pct push $LXC_NBR $PWD/src/$service/constants-service.conf /root/constants-service.conf
|
pct push $LXC_NBR "$PWD/src/$service/install-service.sh" /root/install-service.sh
|
||||||
|
pct push $LXC_NBR "$PWD/src/$service/constants-service.conf" /root/constants-service.conf
|
||||||
|
|
||||||
echo "Installing basic container setup..."
|
echo "Installing basic container setup..."
|
||||||
lxc-attach -n$LXC_NBR bash /root/lxc-base.sh
|
lxc-attach -n$LXC_NBR bash /root/lxc-base.sh
|
||||||
@ -161,6 +168,7 @@ lxc-attach -n$LXC_NBR bash /root/install-service.sh
|
|||||||
|
|
||||||
if [[ $service == "zmb-ad" ]]; then
|
if [[ $service == "zmb-ad" ]]; then
|
||||||
pct stop $LXC_NBR
|
pct stop $LXC_NBR
|
||||||
pct set $LXC_NBR \-nameserver $(echo $LXC_IP | cut -d'/' -f 1)
|
## set nameserver, ${LXC_IP%/*} extracts the ip address from cidr format
|
||||||
|
pct set $LXC_NBR -nameserver ${LXC_IP%/*}
|
||||||
pct start $LXC_NBR
|
pct start $LXC_NBR
|
||||||
fi
|
fi
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.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>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
|
8
src/functions.sh
Normal file
8
src/functions.sh
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# This script has basic functions like a random password generator
|
||||||
|
|
||||||
|
random_password() {
|
||||||
|
set +o pipefail
|
||||||
|
C_CTYPE=C tr -dc 'a-zA-Z0-9' < /dev/urandom | head -c32
|
||||||
|
}
|
@ -31,5 +31,5 @@ GITEA_DB_NAME="gitea"
|
|||||||
# Defines the name from the SQL user
|
# Defines the name from the SQL user
|
||||||
GITEA_DB_USR="gitea"
|
GITEA_DB_USR="gitea"
|
||||||
|
|
||||||
# Build a strong password for the SQL user - could be overwritten with something fixed
|
# Build a strong password for the SQL user - could be overwritten with something fixed
|
||||||
GITEA_DB_PWD="$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)"
|
GITEA_DB_PWD="$(random_password)"
|
@ -5,6 +5,7 @@
|
|||||||
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.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>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
@ -83,10 +84,11 @@ SSL_MODE=disable
|
|||||||
APP_DATA_PATH = /${LXC_SHAREFS_MOUNTPOINT}/gitea
|
APP_DATA_PATH = /${LXC_SHAREFS_MOUNTPOINT}/gitea
|
||||||
DOMAIN = ${LXC_HOSTNAME}.${LXC_DOMAIN}
|
DOMAIN = ${LXC_HOSTNAME}.${LXC_DOMAIN}
|
||||||
SSH_DOMAIN = ${LXC_HOSTNAME}.${LXC_DOMAIN}
|
SSH_DOMAIN = ${LXC_HOSTNAME}.${LXC_DOMAIN}
|
||||||
|
HTTP_HOST = localhost
|
||||||
HTTP_PORT = 3000
|
HTTP_PORT = 3000
|
||||||
ROOT_URL = http://${LXC_HOSTNAME}.${LXC_DOMAIN}/
|
ROOT_URL = http://${LXC_HOSTNAME}.${LXC_DOMAIN}/
|
||||||
DISABLE_SSH = false
|
DISABLE_SSH = false
|
||||||
SSH_PORT = 11122
|
SSH_PORT = 22
|
||||||
SSH_LISTEN_PORT = 22
|
SSH_LISTEN_PORT = 22
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
@ -136,24 +138,11 @@ server {
|
|||||||
|
|
||||||
add_header Strict-Transport-Security "max-age=31536000" always;
|
add_header Strict-Transport-Security "max-age=31536000" always;
|
||||||
|
|
||||||
location = /robots.txt {
|
|
||||||
access_log off;
|
|
||||||
log_not_found off;
|
|
||||||
}
|
|
||||||
|
|
||||||
location = /favicon.ico {
|
|
||||||
access_log off;
|
|
||||||
log_not_found off;
|
|
||||||
}
|
|
||||||
|
|
||||||
access_log /var/log/nginx/gitea.access.log;
|
access_log /var/log/nginx/gitea.access.log;
|
||||||
error_log /var/log/nginx/gitea.error.log;
|
error_log /var/log/nginx/gitea.error.log;
|
||||||
|
|
||||||
client_max_body_size 50M;
|
client_max_body_size 50M;
|
||||||
|
|
||||||
location ~ ^/(assets/|robots.txt|humans.txt|favicon.ico|apple-touch-icon.png) {
|
|
||||||
expires max;
|
|
||||||
}
|
|
||||||
location / {
|
location / {
|
||||||
proxy_set_header X-Real-IP \$remote_addr;
|
proxy_set_header X-Real-IP \$remote_addr;
|
||||||
proxy_set_header Host \$host;
|
proxy_set_header Host \$host;
|
||||||
|
@ -35,10 +35,7 @@ MARIA_DB_NAME="kopano"
|
|||||||
MARIA_DB_USER="kopano"
|
MARIA_DB_USER="kopano"
|
||||||
|
|
||||||
# Build a strong password for the SQL user - could be overwritten with something fixed
|
# Build a strong password for the SQL user - could be overwritten with something fixed
|
||||||
secure_pwd() {
|
|
||||||
set +o pipefail
|
MARIA_ROOT_PWD=$(random_password)
|
||||||
LC_CTYPE=C tr -dc 'a-zA-Z0-9' < /dev/urandom | head -c32
|
MARIA_USER_PWD=$(random_password)
|
||||||
}
|
|
||||||
MARIA_ROOT_PWD=$(secure_pwd)
|
|
||||||
MARIA_USER_PWD=$(secure_pwd)
|
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.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>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ set -euo pipefail
|
|||||||
|
|
||||||
# load configuration
|
# load configuration
|
||||||
echo "Loading configuration..."
|
echo "Loading configuration..."
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants.conf
|
source /root/constants.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.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>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
|
@ -5,14 +5,15 @@
|
|||||||
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.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>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
MRX_PKE=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
|
MRX_PKE=$(random_password)
|
||||||
|
|
||||||
ELE_DBNAME="synapse_db"
|
ELE_DBNAME="synapse_db"
|
||||||
ELE_DBUSER="synapse_user"
|
ELE_DBUSER="synapse_user"
|
||||||
ELE_DBPASS=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
|
ELE_DBPASS=$(random_password)
|
||||||
|
|
||||||
DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt install -y -qq nginx postgresql python3-psycopg2
|
DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt install -y -qq nginx postgresql python3-psycopg2
|
||||||
|
|
||||||
|
@ -38,4 +38,4 @@ NEXTCLOUD_DB_NAME="nextcloud_db"
|
|||||||
NEXTCLOUD_DB_USR="nextcloud"
|
NEXTCLOUD_DB_USR="nextcloud"
|
||||||
|
|
||||||
# Build a strong password for the SQL user - could be overwritten with something fixed
|
# Build a strong password for the SQL user - could be overwritten with something fixed
|
||||||
NEXTCLOUD_DB_PWD="$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)"
|
NEXTCLOUD_DB_PWD="$(random_password)"
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.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>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
|
@ -1,7 +1,15 @@
|
|||||||
|
#!/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>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
ONLYOFFICE_DB_PASS=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
|
ONLYOFFICE_DB_PASS=$(random_password)
|
||||||
|
|
||||||
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys CB2DE8E5
|
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys CB2DE8E5
|
||||||
echo "deb https://download.onlyoffice.com/repo/debian squeeze main" > /etc/apt/sources.list.d/onlyoffice.list
|
echo "deb https://download.onlyoffice.com/repo/debian squeeze main" > /etc/apt/sources.list.d/onlyoffice.list
|
||||||
|
@ -5,12 +5,13 @@
|
|||||||
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.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>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
webroot=/var/www/html
|
webroot=/var/www/html
|
||||||
|
|
||||||
MYSQL_PASSWORD="$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 20 | head -n 1)"
|
MYSQL_PASSWORD="$(random_password)"
|
||||||
|
|
||||||
apt update
|
apt update
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.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>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.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>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.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>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
|
@ -4,6 +4,8 @@
|
|||||||
# (C) 2021 Idea an concept by Christian Zengel <christian@sysops.de>
|
# (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 design and prototype by Markus Helmke <m.helmke@nettwarker.de>
|
||||||
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.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>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.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>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.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>
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
||||||
|
|
||||||
|
source /root/functions.sh
|
||||||
source /root/zamba.conf
|
source /root/zamba.conf
|
||||||
source /root/constants-service.conf
|
source /root/constants-service.conf
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user