1
0
mirror of https://github.com/lxc/incus.git synced 2026-02-05 09:46:19 +01:00

incus-agent: Rename reverters from revert to reverter

Signed-off-by: karo <karolin.kostial@gmail.com>
This commit is contained in:
karo
2025-04-27 04:27:19 -04:00
committed by Stéphane Graber
parent ba9acae39b
commit 9100f23fca

View File

@@ -101,8 +101,8 @@ func reconfigureNetworkInterfaces() {
// configureNIC applies any config specified for the interface based on its current MAC address.
configureNIC := func(currentNIC net.Interface) error {
revert := revert.New()
defer revert.Fail()
reverter := revert.New()
defer reverter.Fail()
// Look for a NIC config entry for this interface based on its MAC address.
nic, ok := nicData[currentNIC.HardwareAddr.String()]
@@ -133,7 +133,7 @@ func reconfigureNetworkInterfaces() {
return err
}
revert.Add(func() {
reverter.Add(func() {
_ = link.SetUp()
})
@@ -144,7 +144,7 @@ func reconfigureNetworkInterfaces() {
return err
}
revert.Add(func() {
reverter.Add(func() {
err := link.SetName(currentNIC.Name)
if err != nil {
return
@@ -165,7 +165,7 @@ func reconfigureNetworkInterfaces() {
link.MTU = nic.MTU
revert.Add(func() {
reverter.Add(func() {
err := link.SetMTU(uint32(currentNIC.MTU))
if err != nil {
return
@@ -180,7 +180,7 @@ func reconfigureNetworkInterfaces() {
return err
}
revert.Success()
reverter.Success()
return nil
}