pipewire/debian/pipewire.postinst

12 lines
243 B
Plaintext
Raw Normal View History

2024-07-25 19:20:18 +02:00
#!/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#