Skip to content
Snippets Groups Projects
Verified Commit e031ec1e authored by Levente Polyak's avatar Levente Polyak :rocket:
Browse files

fix(test): avoid leftover gpg lockfile during container setup

In gnupg 2.4 if we do not kill the deamon during container creation it
will leave behind a lock file. This lock leads to hanging gpg processes
when running the container.
parent 4fbebfd3
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,8 @@ Expire-Date: 0\n\
| gpg --quiet --batch --no-tty --no-permission-warning --gen-key && \
gpg --export | sudo pacman-key -a - && \
sudo pacman-key --lsign-key tester@localhost && \
gpgconf --kill gpg-agent && \
gpgconf --kill keyboxd && \
mkdir -p \
/build/staging/{{core,extra,multilib}{,-testing,-staging},gnome-unstable} && \
git config --global user.email "tester@localhost" && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment