File import-suse-build-key of Package suse-build-key
42
1
#!/bin/bash
2
#
3
triggerfile=/var/lib/suse-build-key/imported
4
5
# if zypp is running we will get into lock conflicts, and zypper might die
6
# unexpectedly.
7
if [ -s /run/zypp.pid ]; then
8
exit 0
9
fi
10
11
# first remove trigger file
12
rm -f $triggerfile
13
14
# The import might fail if something has locked the RPM database. in that case we retry again on next boot or so.
15
16
# Upcoming SLES 15 4096 bit RSA key
17
if test -f /usr/lib/rpm/gnupg/keys/gpg-pubkey-3fa1d6ce-63c9481c.asc; then
18
rpm -q gpg-pubkey-3fa1d6ce > /dev/null ||
19
rpm --import /usr/lib/rpm/gnupg/keys/gpg-pubkey-3fa1d6ce-63c9481c.asc || touch $triggerfile
20
fi
21
if test -f /usr/lib/rpm/gnupg/keys/gpg-pubkey-d588dc46-63c939db.asc; then
22
rpm -q gpg-pubkey-d588dc46 > /dev/null ||
23
rpm --import /usr/lib/rpm/gnupg/keys/gpg-pubkey-d588dc46-63c939db.asc || touch $triggerfile
24
fi
25
26
# SLE Micro 6.0 / SLES 16 keys
27
if test -f /usr/lib/rpm/gnupg/keys/gpg-pubkey-09d9ea69-645b99ce.asc; then
28
rpm -q gpg-pubkey-09d9ea69 > /dev/null ||
29
rpm --import /usr/lib/rpm/gnupg/keys/gpg-pubkey-09d9ea69-645b99ce.asc || touch $triggerfile
30
fi
31
32
if test -f /usr/lib/rpm/gnupg/keys/gpg-pubkey-73f03759-626bd414.asc; then
33
rpm -q gpg-pubkey-73f03759 > /dev/null ||
34
rpm --import /usr/lib/rpm/gnupg/keys/gpg-pubkey-73f03759-626bd414.asc || touch $triggerfile
35
fi
36
37
# if we have finished import, disable and stop the timer.
38
if [ ! -f $triggerfile -a -x /usr/bin/systemctl ] ; then
39
systemctl stop suse-build-key-import.timer
40
systemctl disable suse-build-key-import.timer
41
fi
42