-
Notifications
You must be signed in to change notification settings - Fork 16
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
Restore sign_rpms script, it's used in sign_stage_rpms #429
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash -e | ||
|
||
. settings | ||
|
||
gpg_pass=$(mktemp) | ||
trap 'shred --remove "${gpg_pass}"' EXIT | ||
chmod 0700 "$gpg_pass" | ||
show_gpg_password > "$gpg_pass" | ||
|
||
SIGN_FLAGS=(--define "_gpg_sign_cmd_extra_args --pinentry-mode loopback --passphrase-file ${gpg_pass}" --define "_gpg_path $KEYDIR" --define="_gpg_name $SIGNER") | ||
|
||
rpmdev-vercmp $(rpm --query --queryformat='%{EVR}' rpm) 4.16.0 || RESULT=$? | ||
if [[ $RESULT == "11" ]]; then | ||
SIGN_FLAGS+=("--rpmv3") | ||
fi | ||
|
||
if [[ -n $1 ]] ; then | ||
echo "$@" | xargs $XARGS_JOBS rpmsign --addsign "${SIGN_FLAGS[@]}" | ||
Check notice Code scanning / shellcheck Double quote to prevent globbing and word splitting. Note
Double quote to prevent globbing and word splitting.
|
||
else | ||
find "$RPMDIR" -name '*.rpm' | xargs $XARGS_JOBS rpmsign --addsign "${SIGN_FLAGS[@]}" | ||
Check warning Code scanning / shellcheck Use -print0/-0 or -exec + to allow for non-alphanumeric filenames. Warning
Use -print0/-0 or -exec + to allow for non-alphanumeric filenames.
Check notice Code scanning / shellcheck Double quote to prevent globbing and word splitting. Note
Double quote to prevent globbing and word splitting.
|
||
fi |
Check warning
Code scanning / shellcheck
Quote this to prevent word splitting. Warning