blob: 8cfc5a86e41c9acd2551975aed2bad7597c78181 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
echo "*" >&2
echo "* To finish installing apache2-mod-perl:" >&2
echo "* 1) See if you need to modify the apache2 config:" >&2
echo "* /etc/apache2/conf.d/perl-module.conf" >&2
echo "* 2) Restart apache2 when done." >&2
echo "*" >&2
exit 0
|