Skip to content

Commit

Permalink
Merge master into release-2.4.0.0 (resolve conflicts)
Browse files Browse the repository at this point in the history
  • Loading branch information
narrieta committed Sep 21, 2021
2 parents 11cd669 + 35dfe91 commit 3c373aa
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 38 deletions.
26 changes: 8 additions & 18 deletions azurelinuxagent/common/osutil/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -1163,25 +1163,15 @@ def set_dhcp_hostname(self, hostname):
def restart_if(self, ifname, retries=3, wait=5):
retry_limit = retries + 1
for attempt in range(1, retry_limit):
try:
shellutil.run_command(["ifdown", ifname])
shellutil.run_command(["ifup", ifname])
return_code = shellutil.run("ifdown {0} && ifup {0}".format(ifname), expected_errors=[1] if attempt < retries else [])
if return_code == 0:
return
except shellutil.CommandError as cmd_err:

msg = "failed to restart {0}: returncode={1}\n[stdout]{2}\n\n[stderr]{3}\n"\
.format(ifname, cmd_err.returncode, cmd_err.stdout, cmd_err.stderr)

if cmd_err.returncode == 1:
logger.info(msg)
else:
logger.warn(msg)

if attempt < retry_limit:
logger.info("retrying in {0} seconds".format(wait))
time.sleep(wait)
else:
logger.warn("exceeded restart retries")
logger.warn("failed to restart {0}: return code {1}".format(ifname, return_code))
if attempt < retry_limit:
logger.info("retrying in {0} seconds".format(wait))
time.sleep(wait)
else:
logger.warn("exceeded restart retries")

def publish_hostname(self, hostname):
self.set_dhcp_hostname(hostname)
Expand Down
22 changes: 10 additions & 12 deletions azurelinuxagent/common/osutil/ubuntu.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,19 +142,17 @@ def restart_if(self, ifname, retries=3, wait=5):
Restart an interface by bouncing the link. systemd-networkd observes
this event, and forces a renew of DHCP.
"""
retry_limit=retries+1
retry_limit = retries+1
for attempt in range(1, retry_limit):
try:
shellutil.run_command(["ip", "link", "set", ifname, "down"])
shellutil.run_command(["ip", "link", "set", ifname, "up"])

except shellutil.CommandError as cmd_err:
logger.warn("failed to restart {0}: return code {1}".format(ifname, cmd_err.returncode))
if attempt < retry_limit:
logger.info("retrying in {0} seconds".format(wait))
time.sleep(wait)
else:
logger.warn("exceeded restart retries")
return_code = shellutil.run("ip link set {0} down && ip link set {0} up".format(ifname))
if return_code == 0:
return
logger.warn("failed to restart {0}: return code {1}".format(ifname, return_code))
if attempt < retry_limit:
logger.info("retrying in {0} seconds".format(wait))
time.sleep(wait)
else:
logger.warn("exceeded restart retries")


class UbuntuSnappyOSUtil(Ubuntu14OSUtil):
Expand Down
11 changes: 3 additions & 8 deletions tests/common/osutil/test_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,15 @@ def test_restart(self):
# setup
retries = 3
ifname = 'dummy'
with patch.object(shellutil, "run_command") as run_patch:
run_patch.side_effect = shellutil.CommandError("ifupdown dummy", 1, "", "")
with patch.object(shellutil, "run") as run_patch:
run_patch.return_value = 1

# execute
osutil.DefaultOSUtil.restart_if(osutil.DefaultOSUtil(), ifname=ifname, retries=retries, wait=0)

# assert
self.assertEqual(run_patch.call_count, retries)
cmd_queue = list(args[0] for (args, _) in run_patch.call_args_list)
while cmd_queue:
self.assertEqual(cmd_queue.pop(0), ["ifdown", ifname])
# We don't expect the following command to be called because 'dummy' does
# not exist.
self.assertNotEqual(cmd_queue[0] if cmd_queue else None, ["ifup", ifname])
self.assertEqual(run_patch.call_args_list[0][0][0], 'ifdown {0} && ifup {0}'.format(ifname))

def test_get_dvd_device_success(self):
with patch.object(os, 'listdir', return_value=['cpu', 'cdrom0']):
Expand Down
Binary file removed tests/data/ga/WALinuxAgent-2.2.53.1.zip
Binary file not shown.

0 comments on commit 3c373aa

Please sign in to comment.