diff options
Diffstat (limited to 'testing/mpd/install')
-rw-r--r-- | testing/mpd/install | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/testing/mpd/install b/testing/mpd/install deleted file mode 100644 index 261b8fd0d..000000000 --- a/testing/mpd/install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - getent group mpd &>/dev/null || groupadd -r -g 45 mpd >/dev/null - getent passwd mpd &>/dev/null || useradd -r -u 45 -g mpd -d /var/lib/mpd -s /bin/false -G audio mpd >/dev/null - true -} - -post_remove() { - getent passwd mpd &>/dev/null && userdel mpd >/dev/null - getent group mpd &>/dev/null && groupdel mpd >/dev/null - true -} |