summarylogtreecommitdiffstats
path: root/murmur.install
diff options
context:
space:
mode:
authorLartza2015-07-07 14:52:14 +0300
committerLartza2015-07-07 14:52:14 +0300
commit2de669d09cb8f09decc83ae82445f15534c13444 (patch)
tree9aafbdbc8e67669a15ed6afea72dd58b0f7479a2 /murmur.install
downloadaur-2de669d09cb8f09decc83ae82445f15534c13444.tar.gz
Initial import
Diffstat (limited to 'murmur.install')
-rw-r--r--murmur.install9
1 files changed, 9 insertions, 0 deletions
diff --git a/murmur.install b/murmur.install
new file mode 100644
index 000000000000..d2cfd5345b7e
--- /dev/null
+++ b/murmur.install
@@ -0,0 +1,9 @@
+post_install() {
+ getent group murmur > /dev/null || groupadd -g 122 murmur 1>/dev/null
+ getent passwd murmur > /dev/null || useradd -u 122 -d /var/lib/murmur -g murmur -s /bin/false murmur 1>/dev/null
+
+ echo "You might have to reload dbus before launching murmur:"
+ echo " systemctl reload dbus"
+ echo "Don't forget to set the superuser password:"
+ echo " murmurd -ini /etc/murmur.ini -supw <your-password>"
+}