diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ec917e..9b783e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.7.1] - 2025-04-15 + +### Fixed + +- getConfiguration.py: don't fail if NTFS filesystems are mounted ro + ## [0.7.0] - 2025-04-15 ### Removed diff --git a/ogclient/interfaceAdm/getConfiguration.py b/ogclient/interfaceAdm/getConfiguration.py index 960fe7a..29d4ec4 100755 --- a/ogclient/interfaceAdm/getConfiguration.py +++ b/ogclient/interfaceAdm/getConfiguration.py @@ -74,4 +74,5 @@ else: # Borramos marcas de arranque de Windows for f in glob.glob ('/mnt/*/ogboot.*') + glob.glob ('/mnt/*/*/ogboot.*'): - os.unlink (f) + try: os.unlink (f) + except: pass