diff options
Diffstat (limited to 'community/murmur/murmur.install')
-rw-r--r-- | community/murmur/murmur.install | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/community/murmur/murmur.install b/community/murmur/murmur.install new file mode 100644 index 000000000..fecd2c2ca --- /dev/null +++ b/community/murmur/murmur.install @@ -0,0 +1,16 @@ +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 +} |