Created
September 12, 2018 11:36
-
-
Save andreycizov/57796c68255ecbbe0da998ea668e1196 to your computer and use it in GitHub Desktop.
Raspberry PI pulseaudio systemd daemon definition with proper restarts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/systemd/system/pulseaudio.service | |
[Unit] | |
Description=PulseAudio system server | |
# make sure we start after the network is available | |
After=network.target network-online.target | |
Wants=network-online.target | |
[Service] | |
Type=notify | |
ExecStart=/usr/bin/pulseaudio --daemonize=no --system --realtime --log-target=journal | |
[Install] | |
WantedBy=multi-user.target | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment