summaryrefslogtreecommitdiffstats
path: root/utils/gpg_import_key.sh
blob: 3afeda83981f94432086f709587861f43f2db3d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash -e
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2016 NEC and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# 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
fi
}

if ! isinstalled gnupg2; then
  echo "error with install"
  exit 1
fi

if ! which gsutil;
  then echo "error gsutil not installed";
  exit 1
fi

if gpg2 --list-keys | grep "opnfv-helpdesk@rt.linuxfoundation.org"; then
  echo "Key Already available"
else
  if [ -z "$NODE_NAME" ];
    then echo "Cannot find node name"
      exit 1
    else echo "Importing key for '$NODE_NAME'";
     gsutil cp gs://opnfv-signing-keys/"$NODE_NAME"-subkey .
     gpg2 --import "$NODE_NAME"-subkey
     rm -f "$NODE_NAME"-subkey
   fi
fi