Merge pull request #274 from crawford/networkd
initialize: restart networkd before other units
This commit is contained in:
commit
de35d27bfc
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user