2026-03-06 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in rdautorest(8) that caused a crash when
	cleaning up the mountpoint on CentOS 7.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2026-03-06 17:31:20 -05:00
parent 26a6912292
commit 3c83d2d45d
2 changed files with 4 additions and 1 deletions

View File

@@ -25131,3 +25131,6 @@
'MainObject::GetCanonicalTables(int schema)' method in rddbmgr(8).
2026-02-13 Fred Gleason <fredg@paravelsystems.com>
* Incremented the package version to 4.4.1int3.
2026-03-06 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdautorest(8) that caused a crash when
cleaning up the mountpoint on CentOS 7.

View File

@@ -28,7 +28,7 @@ import syslog
def UnmountDevice(mntpt):
if(os.system(command='findmnt '+mntpt+' > /dev/null')==0):
os.system(command='umount --quiet '+mntpt)
os.system(command='umount '+mntpt)
try:
os.rmdir(mntpt)
except FileNotFoundError: