diff options
author | Bryan Sullivan <bryan.sullivan@att.com> | 2017-11-02 10:19:55 -0400 |
---|---|---|
committer | Bryan Sullivan <bryan.sullivan@att.com> | 2017-11-02 10:19:55 -0400 |
commit | 1e08a0ab3f52a183b9d77a2b7f938d1dc8b8fe23 (patch) | |
tree | 2e9542089e2515e2245591604248a3f97ed6da96 /tools/rancher | |
parent | a1b5833e2911fe48e9fa4a5233c7e6a480777fd6 (diff) |
Fix more server warnings
JIRA: MODELS-23
Change-Id: I2bca5a5e293ffb24748d6bef4435e6876506d1a2
Signed-off-by: Bryan Sullivan <bryan.sullivan@att.com>
Diffstat (limited to 'tools/rancher')
-rw-r--r-- | tools/rancher/demo_deploy.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rancher/demo_deploy.sh b/tools/rancher/demo_deploy.sh index 1ee980d..c76b9f8 100644 --- a/tools/rancher/demo_deploy.sh +++ b/tools/rancher/demo_deploy.sh @@ -45,8 +45,8 @@ source ~/models/tools/maas/deploy.sh $1 "$2" $5 eval `ssh-agent` ssh-add $key if [[ "x$extras" != "x" ]]; then source $extras; fi -scp -o StrictHostKeyChecking=no $key ubuntu@$master:/home/ubuntu/$key -scp -o StrictHostKeyChecking=no ~/models/tools/rancher/rancher-cluster.sh \ +scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no $key ubuntu@$master:/home/ubuntu/$key +scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ~/models/tools/rancher/rancher-cluster.sh \ ubuntu@$master:/home/ubuntu/. echo "Setting up Rancher..." ssh -x -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ubuntu@$master <<EOF |