Merge pull request #274 from crawford/networkd

initialize: restart networkd before other units
This commit is contained in:
Alex Crawford 2014-12-02 17:30:47 -08:00
commit de35d27bfc

View File

@ -363,7 +363,12 @@ func processUnits(units []system.Unit, root string, um system.UnitManager) error
} }
if restartNetworkd { 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 { for _, action := range actions {