pipewire/debian/pipewire.postinst
Ward from fusion-voyager-3 cf01112e68 port to pika os 4
2024-07-25 20:20:18 +03:00

12 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#