initialize: restart networkd before other units

This commit is contained in:
Alex Crawford 2014-12-02 17:21:31 -08:00
parent 62918a28ce
commit f0dea2475d

View File

@ -363,7 +363,12 @@ func processUnits(units []system.Unit, root string, um system.UnitManager) error
}
if restartNetworkd {
actions = append(actions, action{"systemd-networkd.service", "restart"})
log.Printf("Restarting systemd-networkd")
res, err := um.RunUnitCommand("restart", "systemd-networkd.service")
if err != nil {
return err
}
log.Printf("Restarted systemd-networkd (%s)", res)
}
for _, action := range actions {