diff options
author | zhifeng jiang <jiang.zhifeng@zte.com.cn> | 2016-10-26 05:25:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-10-26 05:25:44 +0000 |
commit | ee12d3e19d914d5d7c4a750ab8ddb93b74d242dc (patch) | |
tree | 25bb1f6f01b15ae4758335275bc152b9185d38af /scripts/cleanup_creds.sh | |
parent | c9dc8ffa175f8aac4ced5ac43c189c60d403d4f9 (diff) | |
parent | 62d00c20476d8e25974c2f78ec9c2bd05d8f2412 (diff) |
Merge "Remove Qtip private key files in repos"
Diffstat (limited to 'scripts/cleanup_creds.sh')
-rw-r--r-- | scripts/cleanup_creds.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/cleanup_creds.sh b/scripts/cleanup_creds.sh new file mode 100644 index 00000000..9bf44305 --- /dev/null +++ b/scripts/cleanup_creds.sh @@ -0,0 +1,14 @@ +#! /bin/bash + +DEST_IP=$1 +HOSTNAME=$(hostname) +sshoptions="-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" + +case "$INSTALLER_TYPE" in + fuel) + ssh $sshoptions -i ./config/QtipKey root@$DEST_IP "sed -i '/root@$HOSTNAME/d' /root/.ssh/authorized_keys" + ;; +esac + + + |