mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-27 09:21:41 +02:00
13 lines
412 B
Bash
13 lines
412 B
Bash
#!/bin/sh
|
|
|
|
echo "*" >&2
|
|
echo "* pdns-gui has been installed in: /usr/share/webapps/pdns-gui" >&2
|
|
echo "* pdns-gui logs are at : /var/log/pdns-gui" >&2
|
|
echo "* pdns-gui apache2 config is at : /etc/apache2/conf.d/pdns-gui.conf" >&2
|
|
echo "*" >&2
|
|
echo "* To finish installing pdns-gui, please run the following script:" >&2
|
|
echo "* /usr/share/webapps/pdns-gui/batch/install.sh" >&2
|
|
echo "*" >&2
|
|
|
|
exit 0
|