summarylogtreecommitdiffstats
path: root/mpd.install
diff options
context:
space:
mode:
authormorganamilo2018-05-25 03:04:06 +0100
committermorganamilo2018-05-25 03:04:06 +0100
commitfe294fef8ee85c18715a787b7e95c0608b9de754 (patch)
treec915788a386d752ef2a4d696ca0261af68a82a50 /mpd.install
parent6631ae2495d94b76a804d85497ad700895703d5e (diff)
downloadaur-fe294fef8ee85c18715a787b7e95c0608b9de754.tar.gz
New PKGBUILD based on extra/mpd
Diffstat (limited to 'mpd.install')
-rw-r--r--mpd.install11
1 files changed, 0 insertions, 11 deletions
diff --git a/mpd.install b/mpd.install
deleted file mode 100644
index 261b8fd0d44a..000000000000
--- a/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
-}