summaryrefslogtreecommitdiffstats
path: root/utils/gpg_import_key.sh
diff options
context:
space:
mode:
Diffstat (limited to 'utils/gpg_import_key.sh')
-rwxr-xr-xutils/gpg_import_key.sh37
1 files changed, 27 insertions, 10 deletions
diff --git a/utils/gpg_import_key.sh b/utils/gpg_import_key.sh
index 80b7c397e..f45e40919 100755
--- a/utils/gpg_import_key.sh
+++ b/utils/gpg_import_key.sh
@@ -7,25 +7,42 @@
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
-
function isinstalled {
-if rpm -q "$@" >/dev/null 2>&1; then
- true
- else
- echo installing "$1"
- sudo yum install "$1"
- false
+
+source /etc/os-release; echo ${ID/*, /}
+
+if [[ ${ID/*, /} =~ "centos" ]]; then
+ if rpm -q "$@" >/dev/null 2>&1; then
+ true
+ else
+ echo installing "$1"
+ sudo yum install "$1"
+ false
+ fi
+
+elif [[ ${ID/*, /} =~ "ubuntu" ]]; then
+ if dpkg-query -W -f'${Status}' "$@" 2>/dev/null | grep -q "ok installed"; then
+ true
+ else
+ echo installing "$1"
+ sudo apt-get install -y "$1"
+ false
+ fi
+else
+ echo "Distro not supported"
+ exit 0
fi
+
}
if ! isinstalled gnupg2; then
echo "error with install"
- exit 1
+ exit 0
fi
if ! which gsutil;
then echo "error gsutil not installed";
- exit 1
+ exit 0
fi
if gpg2 --list-keys | grep "opnfv-helpdesk@rt.linuxfoundation.org"; then
@@ -33,7 +50,7 @@ if gpg2 --list-keys | grep "opnfv-helpdesk@rt.linuxfoundation.org"; then
else
if [ -z "$NODE_NAME" ];
then echo "Cannot find node name"
- exit 1
+ exit 0
else echo "Importing key for '$NODE_NAME'";
gsutil cp gs://opnfv-signing-keys/"$NODE_NAME"-subkey .
gpg2 --import "$NODE_NAME"-subkey