blob: 2464e7515a54dff8c08100015a9a42f57f13a792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Alpine Linux post-install script for socklog
# Copyright 2019 Leo (thinkabit.ukim@gmail.com)
# Distributed under the terms of the GNU General Public License, v2 or later
addgroup -S pulse-access 2>/dev/null
addgroup -S pulse 2>/dev/null
adduser -S -D -H -h /var/run/pulse -g "PulseAudio daemon" -G pulse pulse 2>/dev/null
adduser pulse audio 2>/dev/null
|