diff options
Diffstat (limited to 'net-mgmt/satellite/pkg-install')
-rw-r--r-- | net-mgmt/satellite/pkg-install | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/net-mgmt/satellite/pkg-install b/net-mgmt/satellite/pkg-install deleted file mode 100644 index 7145c4db65da..000000000000 --- a/net-mgmt/satellite/pkg-install +++ /dev/null @@ -1,38 +0,0 @@ -#!/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 - then - echo "===> Creating user satellite" - pw add user -n satellite -c 'Satellite system user' -s /sbin/nologin -h - -d / - 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" - exit 1 - ;; -esac |