-
Notifications
You must be signed in to change notification settings - Fork 488
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add sha256 to all the things * update flow * update changelog * Use consistent flags
- Loading branch information
1 parent
745956e
commit 4e62b55
Showing
4 changed files
with
10 additions
and
4 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
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 |
---|---|---|
|
@@ -18,7 +18,8 @@ echo "%_gpg_name Grafana Labs <[email protected]> | |
%_gpg_path /root/.gnupg | ||
%_gpgbin /usr/bin/gpg | ||
%_gpg_digest_algo sha256 | ||
%_binary_filedigest_algorithm 8 | ||
%_binary_filedigest_algorithm sha256 | ||
%_source_filedigest_algorithm sha256 | ||
%__gpg /usr/bin/gpg | ||
%__gpg_sign_cmd %{__gpg} \ | ||
gpg --no-tty --batch --yes --no-verbose --no-armor \ | ||
|
@@ -30,6 +31,6 @@ echo "%_gpg_name Grafana Labs <[email protected]> | |
" > ~/.rpmmacros | ||
|
||
for f in dist/*.rpm; do | ||
rpm --addsign "${f}" | ||
rpm --addsign --fips --rpm-digest sha256 "${f}" | ||
rpm --checksig "${f}" | ||
done |
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 |
---|---|---|
|
@@ -18,7 +18,8 @@ echo "%_gpg_name Grafana Labs <[email protected]> | |
%_gpg_path /root/.gnupg | ||
%_gpgbin /usr/bin/gpg | ||
%_gpg_digest_algo sha256 | ||
%_binary_filedigest_algorithm 8 | ||
%_binary_filedigest_algorithm sha256 | ||
%_source_filedigest_algorithm sha256 | ||
%__gpg /usr/bin/gpg | ||
%__gpg_sign_cmd %{__gpg} \ | ||
gpg --no-tty --batch --yes --no-verbose --no-armor \ | ||
|
@@ -30,6 +31,6 @@ echo "%_gpg_name Grafana Labs <[email protected]> | |
" > ~/.rpmmacros | ||
|
||
for f in dist/*.rpm; do | ||
rpm --addsign "${f}" | ||
rpm --addsign --fips --rpm-digest sha256 "${f}" | ||
rpm --checksig "${f}" | ||
done |
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