From 4bed2a791f2498ab1e48d50dd6799031611b85c5 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Sat, 16 Nov 2024 14:16:57 +0100 Subject: CMake/RPM integration * CI integration * RPM (un)install scripts Signed-off-by: Toni Uhlig --- packages/redhat/post_uninstall | 8 ++++++++ packages/redhat/pre_install | 19 +++++++++++++++++++ packages/redhat/pre_uninstall | 5 +++++ 3 files changed, 32 insertions(+) create mode 100644 packages/redhat/post_uninstall create mode 100644 packages/redhat/pre_install create mode 100644 packages/redhat/pre_uninstall (limited to 'packages') 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 <