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

Restore sign_rpms script, it's used in sign_stage_rpms #429

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Changes from all commits
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
21 changes: 21 additions & 0 deletions sign_rpms
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=$?

Check warning

Code scanning / shellcheck

Quote this to prevent word splitting. Warning

Quote this to prevent word splitting.
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
Loading