aboutsummaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2024-11-16 14:16:57 +0100
committerToni Uhlig <matzeton@googlemail.com>2024-11-17 17:12:06 +0100
commit4bed2a791f2498ab1e48d50dd6799031611b85c5 (patch)
tree6841e06d9746d9cbef80e6038233dd836c8e6a8b /packages
parent1aa7d9bdb6d517a70eb1ee5f158a305677c8157f (diff)
CMake/RPM integration
* CI integration * RPM (un)install scripts Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'packages')
-rw-r--r--packages/redhat/post_uninstall8
-rw-r--r--packages/redhat/pre_install19
-rw-r--r--packages/redhat/pre_uninstall5
3 files changed, 32 insertions, 0 deletions
diff --git a/packages/redhat/post_uninstall b/packages/redhat/post_uninstall
new file mode 100644
index 000000000..e36f9fa6b
--- /dev/null
+++ b/packages/redhat/post_uninstall
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+if [ $1 == 0 ]; then
+ rm -rf /run/nDPId /run/nDPIsrvd
+ userdel ndpid || true
+ userdel ndpisrvd || true
+ groupdel ndpisrvd-distributor || true
+fi
diff --git a/packages/redhat/pre_install b/packages/redhat/pre_install
new file mode 100644
index 000000000..8dc02349e
--- /dev/null
+++ b/packages/redhat/pre_install
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+if [ $1 == 1 ]; then
+ groupadd --system ndpisrvd-distributor
+ adduser --system --no-create-home --shell=/bin/false --user-group ndpisrvd
+ adduser --system --no-create-home --shell=/bin/false --user-group ndpid
+
+ cat <<EOF
+****************************************************************************
+* The user whom may want to access DPI data needs access to: *
+* /run/nDPIsrvd/distributor *
+* *
+* To make it accessible to [USER], type: *
+* sudo usermod --append --groups ndpisrvd-distributor [USER] *
+* *
+* Please note that you might need to re-login to make changes take effect. *
+****************************************************************************
+EOF
+fi
diff --git a/packages/redhat/pre_uninstall b/packages/redhat/pre_uninstall
new file mode 100644
index 000000000..d0ea019fb
--- /dev/null
+++ b/packages/redhat/pre_uninstall
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+if [ $1 == 0 ]; then
+ systemctl stop ndpisrvd.service
+fi