You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
325 B
14 lines
325 B
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
DATADIR="/srv/znc"
|
|
|
|
mkdir -p $DATADIR/configs
|
|
cp /bootstrap/configs/znc.conf $DATADIR/configs/znc.conf
|
|
|
|
if [ -f /bootstrap/tls/znc.key ] && [ -f /bootstrap/tls/znc.crt ]; then
|
|
cat /bootstrap/tls/znc.key /bootstrap/tls/znc.crt > /srv/znc/tls/znc.pem
|
|
fi
|
|
|
|
/opt/znc/bin/znc --foreground --datadir "$DATADIR"
|
|
|