diff options
Diffstat (limited to 'community/murmur/murmur.install')
-rw-r--r-- | community/murmur/murmur.install | 16 |
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 -} |