summaryrefslogtreecommitdiff
path: root/www/squid27/pkg-install
blob: f2088a460b3aec5032e663c59fc07c2c95360cd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/sh

PKGNAME=$1

case $2 in
    PRE-INSTALL)
	;;
    POST-INSTALL)
	echo "==> Post-installation configuration of ${PKGNAME}"
	echo ""
	echo "    o you DO need running nameservice to start and run ${PKGNAME}"
	echo ""
	echo "    o use the ${PKGNAME} proxy and caching WWW Server by"
	echo "      configuring your WWW Navigator (Netscape, Mosaic,...)"
	echo "      to use it as a proxy server."
	echo ""
	echo "==> Press Enter to edit the ${PKGNAME} config file."
	echo "    (The defaults are reasonable; and the file is well commented)"
	tput md
	echo "    You'd certainly like to pay attention to the"
	echo "    ACTUAL locations of cache \"spool\", logfiles, pidfile!"
	tput me
	read skip
	chown root:wheel ${PREFIX:-/usr/local}/etc/squid/squid.conf*
	chmod 644 ${PREFIX:-/usr/local}/etc/squid/squid.conf*
	[ -f ${PREFIX:-/usr/local}/etc/squid/squid.conf ] || \
		cp -fp	${PREFIX:-/usr/local}/etc/squid/squid.conf.default \
			${PREFIX:-/usr/local}/etc/squid/squid.conf
	[ -f ${PREFIX:-/usr/local}/etc/squid/mime.conf ] || \
		cp -fp	${PREFIX:-/usr/local}/etc/squid/mime.conf.default \
			${PREFIX:-/usr/local}/etc/squid/mime.conf
	${EDITOR:-vi} ${PREFIX:-/usr/local}/etc/squid/squid.conf \
		      ${PREFIX:-/usr/local}/etc/squid/mime.conf
	;;
    *)
	echo "Unexpected Argument $2!!!"
	exit 1
	;;
esac
exit 0