blob: 478b88fb717da0dfa464f9b9590818077e4aaa7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
if ! command -v gpg &> /dev/null; then
echo "gpg binary could not be found"
exit 1
fi
GPG_KEY="/usr/share/vyos/keys/vyos-release.pub.asc"
echo I: Import GPG key
gpg --import ${GPG_KEY}
exit $?
|