1
0
Fork 0
pipewire/debian/pipewire.postinst
Daniel Baumann a5c83cd592
Adding debian version 1.4.2-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 21:40:43 +02:00

11 lines
243 B
Bash

#!/bin/sh
set -e
if [ "$1" = "configure" ] ; then
# Create the pipewire system group for setting real-time priority limits
if ! getent group pipewire > /dev/null; then
addgroup --quiet --system pipewire
fi
fi
#DEBHELPER#