summaryrefslogtreecommitdiff
path: root/net-mgmt/satellite/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'net-mgmt/satellite/pkg-install')
-rw-r--r--net-mgmt/satellite/pkg-install17
1 files changed, 0 insertions, 17 deletions
diff --git a/net-mgmt/satellite/pkg-install b/net-mgmt/satellite/pkg-install
deleted file mode 100644
index 61b065a8b237..000000000000
--- a/net-mgmt/satellite/pkg-install
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-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)
- ;;
- *)
- echo "Incorrect parameter"
- exit 1
- ;;
-esac