blob: 4bc6d990a0cb945ca2787e694c3bdf087dc74285 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/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
|