# z.B. nach /usr/share
wget https://goos-habermann.de/commonInstall.inc -O /usr/share/commonInstall.inc
Bevor Ihr commonInstall-Funktionen nutzen könnt, müßt Ihr die Bibliothek laden:
. /usr/share/commonInstall.inc
Danach könnt Ihr die Funktionen nutzen (z.B. Installation eines Mailservers (SMTP, POP3 und IMAP)) mit:
# Leerzeichen getrennte Liste mit Domains, für die der Mailserver zuständig ist:
export DT_INST_domain="mail.example.com mail2.example.com"
# Hostname des Servers
export DT_INST_hostname="example.com"
CI_mailServerInstall
Die weiteren Funktionen findet Ihr in der Bibliotheks-Datei beschrieben.
# eg. store in /usr/share
wget https://goos-habermann.de/commonInstall.inc -O /usr/share/commonInstall.inc
You need to load the commonInstall library before you can use it by:
. /usr/share/commonInstall.inc
Afterwards you can use the functions (eg. installation of a mail server (SMTP, POP3 and IMAP)):
# Space seprated list of domains the mail server should address:
export DT_INST_domain="mail.example.com mail2.example.com"
# Hostname of the server
export DT_INST_hostname="example.com"
CI_mailServerInstall
The other functions are described in the library file.