Fixed dns backend, added password quotes warning

This commit is contained in:
Thorsten Spille 2021-04-12 23:13:35 +02:00
parent ad31e85feb
commit aa87e3c181
2 changed files with 7 additions and 7 deletions

View File

@ -75,8 +75,8 @@ LXC_LOCALE="de_DE.utf8"
ZMB_REALM="ZMB.ROCKS" ZMB_REALM="ZMB.ROCKS"
ZMB_DOMAIN="ZMB" ZMB_DOMAIN="ZMB"
# Select the Zamba AD DNS backend, supported are INTERNAL_DNS or BIND9_DLZ # Select the Zamba AD DNS backend, supported are SAMBA_INTERNAL or BIND9_DLZ
ZMB_DNS_BACKEND="INTERNAL_DNS" ZMB_DNS_BACKEND="SAMBA_INTERNAL"
# The Domain-Admin and password for zamba installation # The Domain-Admin and password for zamba installation
ZMB_ADMIN_USER="Administrator" ZMB_ADMIN_USER="Administrator"

View File

@ -90,7 +90,7 @@ Defines the vlan id of the LXC container's network interface, if the network ada
LXC_VLAN="80" LXC_VLAN="80"
``` ```
### LXC_PWD ### LXC_PWD
Defines the `root` password of your LXC container Defines the `root` password of your LXC container. Please use 'single quatation marks' to avoid unexpected behaviour.
```bash ```bash
LXC_PWD="S3cr3tp@ssw0rd" LXC_PWD="S3cr3tp@ssw0rd"
``` ```
@ -132,9 +132,9 @@ Defines the domain name in your Active Directory or Workgroup (AD DC, AD member,
ZMB_DOMAIN="ZMB" ZMB_DOMAIN="ZMB"
``` ```
### ZMB_DNS_BACKEND ### ZMB_DNS_BACKEND
Defines the desired DNS server backend, supported are `INTERNAL_DNS` and `BIND9_DLZ` for more advanced usage Defines the desired DNS server backend, supported are `SAMBA_INTERNAL` and `BIND9_DLZ` for more advanced usage
```bash ```bash
ZMB_DNS_BACKEND="INTERNAL_DNS" ZMB_DNS_BACKEND="SAMBA_INTERNAL"
``` ```
### ZMB_ADMIN_USER ### ZMB_ADMIN_USER
Defines the name of your domain administrator account (AD DC, AD member) Defines the name of your domain administrator account (AD DC, AD member)
@ -142,9 +142,9 @@ Defines the name of your domain administrator account (AD DC, AD member)
ZMB_ADMIN_USER="Administrator" ZMB_ADMIN_USER="Administrator"
``` ```
### ZMB_ADMIN_PASS ### ZMB_ADMIN_PASS
Defines the domain administrator's password (AD DC, AD member) Defines the domain administrator's password (AD DC, AD member). Please use 'single quatation marks' to avoid unexpected behaviour.
```bash ```bash
ZMB_ADMIN_PASS="1c@nd0@nyth1n9" ZMB_ADMIN_PASS='1c@nd0@nyth1n9'
``` ```
### ZMB_DOMAIN_ADMINS_GROUP ### ZMB_DOMAIN_ADMINS_GROUP
Defines the domain admins group of your active directory. Defines the domain admins group of your active directory.