diff options
Diffstat (limited to 'packages/debian/preinst')
-rwxr-xr-x | packages/debian/preinst | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/debian/preinst b/packages/debian/preinst new file mode 100755 index 000000000..e60ef3af3 --- /dev/null +++ b/packages/debian/preinst @@ -0,0 +1,16 @@ +#!/bin/sh + +addgroup --system ndpisrvd-distributor +adduser --system --no-create-home --shell=/bin/false --group ndpisrvd +adduser --system --no-create-home --shell=/bin/false --group ndpid + +cat <<EOF +********************************************************************************** +* The that may want to access DPI data needs access to /run/nDPIsrvd/distributor * +* * +* To make it accessible to a user, type: * +* sudo usermod --append --groups ndpisrvd-distributor [USER] * +* * +* Please not that you might need to re-login to make changes take effect. * +********************************************************************************** +EOF |