aboutsummaryrefslogtreecommitdiff
path: root/net/openospfd/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'net/openospfd/pkg-install')
-rw-r--r--net/openospfd/pkg-install36
1 files changed, 0 insertions, 36 deletions
diff --git a/net/openospfd/pkg-install b/net/openospfd/pkg-install
deleted file mode 100644
index dda8b52eb6fd..000000000000
--- a/net/openospfd/pkg-install
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-
-case $2 in
-POST-INSTALL)
- USER=_ospfd
- GROUP=${USER}
- UID=131
- GID=${UID}
- PW=/usr/sbin/pw
-
- if ${PW} group show "${GROUP}" 2>/dev/null; then
- echo "You already have a group \"${GROUP}\", so I will use it."
- else
- if ${PW} groupadd ${GROUP} -g ${GID}; then
- echo "Added group \"${GROUP}\"."
- else
- echo "Adding group \"${GROUP}\" failed..."
- exit 1
- fi
- fi
-
- if ${PW} user show "${USER}" 2>/dev/null; then
- echo "You already have a user \"${USER}\", so I will use it."
- else
- if ${PW} useradd ${USER} -u ${UID} -g ${GROUP} -h - \
- -d "/var/empty" -s /sbin/nologin -c "OSPF Daemon"
- then
- echo "Added user \"${USER}\"."
- else
- echo "Adding user \"${USER}\" failed..."
- exit 1
- fi
- fi
- exit 0
- ;;
-esac