-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use latest Fedora image and use RSA key type and curve for gpg key
Signed-off-by: Shreenidhi Shedi <[email protected]>
- Loading branch information
Showing
3 changed files
with
12 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM fedora:34 | ||
FROM fedora:latest | ||
|
||
COPY ci/prep.sh /prep.sh | ||
RUN chmod +x /prep.sh | ||
|
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
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 |
---|---|---|
|
@@ -63,16 +63,16 @@ mkdir -p -m 755 ${BUILD_PATH}/BUILD \ | |
|
||
#gpgkey data for unattended key generation | ||
cat << EOF > ${TEST_REPO_DIR}/gpgkeydata | ||
%echo Generating a key for repogpgcheck signatures | ||
%no-protection | ||
Key-Type: default | ||
Subkey-Type: default | ||
Name-Real: tdnf test | ||
Name-Comment: tdnf test key | ||
Name-Email: [email protected] | ||
Expire-Date: 0 | ||
%commit | ||
%echo done | ||
%echo Generating a key for repogpgcheck signatures | ||
%no-protection | ||
Key-Type: RSA | ||
Subkey-Type: RSA | ||
Name-Real: tdnf test | ||
Name-Comment: tdnf test key | ||
Name-Email: [email protected] | ||
Expire-Date: 0 | ||
%commit | ||
%echo done | ||
EOF | ||
|
||
#generate a key non interactively. this is used in testing | ||
|