aboutsummaryrefslogtreecommitdiffstats
path: root/net/satellite/pkg-install
diff options
context:
space:
mode:
authormarkp <markp@FreeBSD.org>2001-06-12 18:17:21 +0800
committermarkp <markp@FreeBSD.org>2001-06-12 18:17:21 +0800
commita22dd8367e09643fa132f6d6535979663265fe9e (patch)
treee71e3dc0d82350c405350820ae39ad506219659c /net/satellite/pkg-install
parent270b07e22c27f424e28431554864b8dbb7e77b94 (diff)
downloadfreebsd-ports-gnome-a22dd8367e09643fa132f6d6535979663265fe9e.tar.gz
freebsd-ports-gnome-a22dd8367e09643fa132f6d6535979663265fe9e.tar.zst
freebsd-ports-gnome-a22dd8367e09643fa132f6d6535979663265fe9e.zip
Fix mtree problem reported by Bento.
Diffstat (limited to 'net/satellite/pkg-install')
-rw-r--r--net/satellite/pkg-install21
1 files changed, 0 insertions, 21 deletions
diff --git a/net/satellite/pkg-install b/net/satellite/pkg-install
index 7145c4db65da..61b065a8b237 100644
--- a/net/satellite/pkg-install
+++ b/net/satellite/pkg-install
@@ -1,8 +1,5 @@
#!/bin/sh
-[ "${PKG_PREFIX}" ] && PREFIX="${PKG_PREFIX}"
-[ "${PREFIX}" ] || PREFIX=/usr/local
-
case "$2" in
PRE-INSTALL)
if ! pw user show satellite >/dev/null 2>&1
@@ -12,24 +9,6 @@ case "$2" in
fi
;;
POST-INSTALL)
- if [ ! -f "${PREFIX}/etc/satellite.db" ]
- then
- echo "===> Creating ${PREFIX}/etc/satellite.db configuration file"
- ${PREFIX}/sbin/satcfg -L
- chown satellite ${PREFIX}/etc/satellite.db
- chmod 600 ${PREFIX}/etc/satellite.db
- fi
- if [ ! -f "/var/log/satellite" ]
- then
- echo "===> Creating initial log file /var/log/satellite"
- touch /var/log/satellite
- chown satellite /var/log/satellite
- fi
- echo "===> To run the satellited server you will need to change a few files."
- echo "===> Please add the following line to /etc/services"
- echo "satellite 1764/tcp"
- echo "===> Please add the following line to /etc/inetd.conf and restart inetd"
- echo "satellite stream tcp nowait satellite ${PREFIX}/sbin/satellited satellited -v"
;;
*)
echo "Incorrect parameter"