diff --git a/inbm/Changelog.md b/inbm/Changelog.md index 807c3a46c..1aa572677 100644 --- a/inbm/Changelog.md +++ b/inbm/Changelog.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ## X.X.X - YYYY-MM-DD ### Changed +- (NEXMANAGE-1272) Fix /var/intel-manageability directory not being created when using LUKS which is needed for sqlite3 - (NEXMANAGE-956) Improve failure reason from TC that is logged in Mjunct DB for FOTA - (NEXMANAGE-1194) provision-tc/mqtt services will now handle UDM - (NEXMANAGE-1253) Implement INBS (UDM) decommission command, which removes device credentials diff --git a/inbm/fpm/mqtt/template/usr/bin/mqtt-ensure-secret-mounted b/inbm/fpm/mqtt/template/usr/bin/mqtt-ensure-secret-mounted index 866177063..e9556b75d 100755 --- a/inbm/fpm/mqtt/template/usr/bin/mqtt-ensure-secret-mounted +++ b/inbm/fpm/mqtt/template/usr/bin/mqtt-ensure-secret-mounted @@ -22,6 +22,9 @@ if mountpoint -q "/mnt/udm-luks" ; then # Ensure public directory exists mkdir -p "$TC_PUBLIC" + # Ensure this directory exists as it is also used for SQLITE3 DB + mkdir -p "$TC_SECRET_IMG_DIR" + # Exit the script since we've completed the necessary steps for UDM mode exit 0 fi