blob: 0c706702189f9d3673234428942d2a2d93473f5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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#
|