diff options
Diffstat (limited to 'testing/mpd/install')
-rw-r--r-- | testing/mpd/install | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/testing/mpd/install b/testing/mpd/install deleted file mode 100644 index 655645716..000000000 --- a/testing/mpd/install +++ /dev/null @@ -1,10 +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/true -G audio mpd >/dev/null - echo '==> Now create a /etc/mpd.conf file; see: /usr/share/mpd/mpd.conf.example' -} - -post_remove() { - getent passwd mpd &>/dev/null && userdel mpd >/dev/null - getent group mpd &>/dev/null && groupdel mpd >/dev/null -} |