aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/nav/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'net-mgmt/nav/pkg-install')
-rw-r--r--net-mgmt/nav/pkg-install19
1 files changed, 0 insertions, 19 deletions
diff --git a/net-mgmt/nav/pkg-install b/net-mgmt/nav/pkg-install
deleted file mode 100644
index f1d894715066..000000000000
--- a/net-mgmt/nav/pkg-install
+++ /dev/null
@@ -1,19 +0,0 @@
-#! /bin/sh
-
-case "$2" in
-PRE-INSTALL)
- set -e
- if ! pw groupshow nav >/dev/null 2>&1 ; then
- pw groupadd nav -g 127
- fi
- if ! pw usershow navcron >/dev/null 2>&1 ; then
- pw useradd navcron -u 127 -g nav -h - \
- -d ${PKG_PREFIX}/nav -s /sbin/nologin \
- -c 'Network Administration Visualized'
- fi
- ;;
-DEINSTALL)
- pw userdel navcron
- pw groupdel nav
- ;;
-esac