12 lines
155 B
Plaintext
12 lines
155 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
id -u soundfx &>/dev/null || userdel soundfx
|
||
|
|
||
|
if [ -f /etc/soundfx-rs/config.env ]; then
|
||
|
rm /etc/soundfx/config.env
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|