12 lines
369 B
Text
12 lines
369 B
Text
|
#!/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
|
||
|
|