Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(NEXMANAGE-1272) Always add /var/intel-manageability directory for SQLITE3 DB #642

Merged
merged 2 commits into from
Feb 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions inbm/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions inbm/fpm/mqtt/template/usr/bin/mqtt-ensure-secret-mounted
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down