summaryrefslogtreecommitdiff
path: root/community/murmur/murmur.install
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/murmur/murmur.install
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/murmur/murmur.install')
-rw-r--r--community/murmur/murmur.install16
1 files changed, 0 insertions, 16 deletions
diff --git a/community/murmur/murmur.install b/community/murmur/murmur.install
deleted file mode 100644
index fecd2c2ca..000000000
--- a/community/murmur/murmur.install
+++ /dev/null
@@ -1,16 +0,0 @@
-post_install() {
- getent group murmur > /dev/null || groupadd -r -g 86 murmur 1>/dev/null
- getent passwd murmur > /dev/null || useradd -r -u 86 -d /var/lib/murmur -g murmur -s /bin/false murmur 1>/dev/null
-
- chown -R murmur:murmur /var/lib/murmur
-
- echo "You might have to reload dbus before launching murmur:"
- echo " systemctl reload bus"
- echo "Don't forget to set the superuser password:"
- echo " murmurd -ini /etc/murmur.ini -supw <your-password>"
-}
-
-post_remove() {
- getent passwd murmur > /dev/null && userdel murmur 1>/dev/null
- getent group murmur > /dev/null && groupdel murmur 1>/dev/null
-}