From 58ae8989487a4f45486104364860fdca6260226b Mon Sep 17 00:00:00 2001 From: Brian Waldon Date: Tue, 25 Mar 2014 18:50:38 -0700 Subject: [PATCH] fix(systemd): Update usage of dbus.Reload --- system/systemd.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/system/systemd.go b/system/systemd.go index a96fb29..dda28b2 100644 --- a/system/systemd.go +++ b/system/systemd.go @@ -116,8 +116,7 @@ func DaemonReload() error { return err } - _, err = conn.Reload() - return err + return conn.Reload() } func ExecuteScript(scriptPath string) (string, error) {