summaryrefslogtreecommitdiff
path: root/azurelinuxagent/common/osutil/openbsd.py
diff options
context:
space:
mode:
Diffstat (limited to 'azurelinuxagent/common/osutil/openbsd.py')
-rw-r--r--azurelinuxagent/common/osutil/openbsd.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/azurelinuxagent/common/osutil/openbsd.py b/azurelinuxagent/common/osutil/openbsd.py
index 9bfe6de..a022c59 100644
--- a/azurelinuxagent/common/osutil/openbsd.py
+++ b/azurelinuxagent/common/osutil/openbsd.py
@@ -248,8 +248,10 @@ class OpenBSDOSUtil(DefaultOSUtil):
os.makedirs(mount_point)
for retry in range(0, max_retry):
- retcode = self.mount(dvd_device, mount_point, option="-o ro -t udf",
- chk_err=chk_err)
+ retcode = self.mount(dvd_device,
+ mount_point,
+ option="-o ro -t udf",
+ chk_err=False)
if retcode == 0:
logger.info("Successfully mounted DVD")
return