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

Change release server token path #585

Merged
merged 2 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
-
### Changed
- (NEXMANAGE-906) Truncate the granular log instead of removing it
- Change release server token path to /etc/intel_edge_node/tokens/release-service/rs_access_token

### Fixed
- (NEXMANAGE-837) Fix schema validation issue on failed UDM request sent from
Expand Down
2 changes: 1 addition & 1 deletion inbm/dispatcher-agent/dispatcher/sota/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
TIBER_UPDATE_TOOL_PATH = get_canonical_representation_of_path('/usr/bin/os-update-tool.sh')

# Release server access token path
RELEASE_SERVER_TOKEN_PATH = get_canonical_representation_of_path('/etc/intel_edge_node/tokens/platform-update-agent/'
RELEASE_SERVER_TOKEN_PATH = get_canonical_representation_of_path('/etc/intel_edge_node/tokens/release-service/'
yengliong93 marked this conversation as resolved.
Show resolved Hide resolved
'rs_access_token')

SOTA_STATE = 'normal'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
/etc/dpkg/dpkg.cfg r,
/etc/dpkg/dpkg.cfg.d/ r,
/etc/dpkg/dpkg.cfg.d/* r,
/etc/intel_edge_node/tokens/platform-update-agent/rs_access_token r,
/etc/intel_edge_node/tokens/release-service/rs_access_token r,
yengliong93 marked this conversation as resolved.
Show resolved Hide resolved
/etc/intel_manageability.conf wr,
/etc/firmware_tool_info.conf r,
/etc/fstab r,
Expand Down
Loading