aboutsummaryrefslogtreecommitdiff
path: root/net/repeater/files/pkg-install.in
diff options
context:
space:
mode:
Diffstat (limited to 'net/repeater/files/pkg-install.in')
-rw-r--r--net/repeater/files/pkg-install.in24
1 files changed, 0 insertions, 24 deletions
diff --git a/net/repeater/files/pkg-install.in b/net/repeater/files/pkg-install.in
deleted file mode 100644
index bc5252d00cdc..000000000000
--- a/net/repeater/files/pkg-install.in
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-#
-
-PW="/usr/sbin/pw"
-CHOWN="/usr/sbin/chown"
-CHMOD="/bin/chmod"
-MKDIR="/bin/mkdir -p"
-NOLOGIN="/usr/sbin/nologin"
-
-REP_USER=%%REP_USER%%
-REP_GROUP=%%REP_GROUP%%
-
-case "$2" in
-
-POST-INSTALL)
- ${PW} groupshow -n ${REP_GROUP} >/dev/null 2>&1 \
- || ${PW} groupadd -n ${REP_GROUP}
- ${PW} usershow -n ${REP_USER} >/dev/null 2>&1 \
- || ${PW} useradd ${REP_USER} -g ${REP_GROUP} -s ${NOLOGIN}
- ;;
-
-esac
-exit 0