Hi
I'm using Archlinux ARM in a Raspberry Pi as a server and I have one server of Mumble (murmur) running on it. I installed it from default repositories, version 1.2.4.
After installing it and load it up with
$this->bbcode_second_pass_code('', 'systemctl start murmur')
it works like a charm, but after reboot the system (in order to assure that everything will work if I suffer a power fail at home) I can't connect the server anymore.
Looking around I discover that I need to enable murmur in systemd (I'm very new to archlinux, specially with systemd). Well, I enabled it, rebooted and it didn't work. After
$this->bbcode_second_pass_code('', 'systemctl restart murmur')
everything works. But I'm still intrigued about why I need to restart the service (or unit, how it looks that it's called now). Just after the bootup, I get this
$this->bbcode_second_pass_code('', '# systemctl status murmur
murmur.service - Mumble Daemon
Loaded: loaded (/usr/lib/systemd/system/murmur.service; enabled)
Active: active (running) since jue 1970-01-01 01:00:06 CET; 43 years 5 months ago
Main PID: 124 (murmurd)
CGroup: name=systemd:/system/murmur.service
ââ124 /usr/bin/murmurd -ini /etc/murmur.ini -fg')
Everything looks fine but it doesn't work. Afther the service restart
$this->bbcode_second_pass_code('', '# systemctl status murmur
murmur.service - Mumble Daemon
Loaded: loaded (/usr/lib/systemd/system/murmur.service; enabled)
Active: active (running) since mar 2013-06-25 19:32:27 CEST; 15s ago
Main PID: 286 (murmurd)
CGroup: name=systemd:/system/murmur.service
ââ286 /usr/bin/murmurd -ini /etc/murmur.ini -fg
')
Still ok, and server working.
I can't figure out what's going on. I tried to reinstall murmur but it doesn't solve anything.
Some idea?
