summaryrefslogtreecommitdiff
path: root/net-mgmt/satellite/pkg-install
diff options
context:
space:
mode:
authorMark Pulford <markp@FreeBSD.org>2001-06-12 10:17:21 +0000
committerMark Pulford <markp@FreeBSD.org>2001-06-12 10:17:21 +0000
commit043fe06cfd43ca8cda54b1aa2b204991e769c64e (patch)
treea38aaf6b6f14b0adc2cf2427cdcf7662c3f03753 /net-mgmt/satellite/pkg-install
parentUpdate to 0.7.1. Removed useless gettext dependency. (diff)
Fix mtree problem reported by Bento.
Notes
Notes: svn path=/head/; revision=43887
Diffstat (limited to 'net-mgmt/satellite/pkg-install')
-rw-r--r--net-mgmt/satellite/pkg-install21
1 files changed, 0 insertions, 21 deletions
diff --git a/net-mgmt/satellite/pkg-install b/net-mgmt/satellite/pkg-install
index 7145c4db65da..61b065a8b237 100644
--- a/net-mgmt/satellite/pkg-install
+++ b/net-mgmt/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"