forked from confidential-containers/cloud-api-adaptor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug: fix the aa-kbc-params error in fedora
Fixes: confidential-containers#1852 Signed-off-by: Qi Feng Huo <huoqif@cn.ibm.com>
- Loading branch information
Qi Feng Huo
committed
Jun 6, 2024
1 parent
b04ccd0
commit 479a508
Showing
7 changed files
with
23 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/cloud-api-adaptor/podvm/files/etc/systemd/system/kata-agent.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...odvm/files/etc/systemd/system/multi-user.target.wants/process-user-data-provision.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../process-user-data-provision.service |
1 change: 1 addition & 0 deletions
1
...r/podvm/files/etc/systemd/system/multi-user.target.wants/process-user-data-update.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../process-user-data-update.service |
1 change: 0 additions & 1 deletion
1
...-adaptor/podvm/files/etc/systemd/system/multi-user.target.wants/process-user-data.service
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/cloud-api-adaptor/podvm/files/etc/systemd/system/process-user-data-update.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# One-shot systemd service for running the process-user-data binary | ||
# It must run before kata-agent.service | ||
|
||
[Unit] | ||
Description=Process user data and update | ||
After=network.target cloud-final.service process-user-data-provision | ||
DefaultDependencies=no | ||
|
||
|
||
[Service] | ||
Type=oneshot | ||
ExecStart=/usr/local/bin/process-user-data update-agent-config | ||
RemainAfterExit=yes | ||
|
||
[Install] | ||
WantedBy=multi-user.target | ||
PartOf=process-user-data-provision.service |