Related systemd documentation: http://www.freedesktop.org/wiki/Software/systemd/syslog/
"Newer systemd versions (v35+) do not support non-socket-activated syslog daemons anymore and we do no longer recommend people to order their units after syslog.target." Related systemd commit: http://cgit.freedesktop.org/systemd/systemd/commit/?id=4b7b2efb69943aae0f8287df6e28b637c50fe318 Signed-off-by: Marko Saukko <[email protected]> --- src/connman.service.in | 3 ++- vpn/connman-vpn.service.in | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/connman.service.in b/src/connman.service.in index 48afb63..7b6195e 100644 --- a/src/connman.service.in +++ b/src/connman.service.in @@ -1,6 +1,7 @@ [Unit] Description=Connection service -After=syslog.target +Requires=dbus.socket +After=dbus.socket Before=remote-fs.target [Service] diff --git a/vpn/connman-vpn.service.in b/vpn/connman-vpn.service.in index ec02a86..3778d51 100644 --- a/vpn/connman-vpn.service.in +++ b/vpn/connman-vpn.service.in @@ -1,6 +1,7 @@ [Unit] Description=ConnMan VPN service -After=syslog.target +Requires=dbus.socket +After=dbus.socket [Service] Type=dbus -- 1.9.0 _______________________________________________ connman mailing list [email protected] https://lists.connman.net/mailman/listinfo/connman
