We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ea637 commit 154eda5Copy full SHA for 154eda5
utils.sh
@@ -138,14 +138,14 @@ get_openstack_option_value () {
138
}
139
140
configure_ssh_pubkey_auth () {
141
- USERNAME=$1
142
- HOST=$2
143
- SSH_KEY_FILE_PUB=$3
144
- PASSWORD=$4
+ local USERNAME=$1
+ local HOST=$2
+ local SSH_KEY_FILE_PUB=$3
+ local PASSWORD=$4
145
146
- MAX_WAIT_SECONDS=300
+ local MAX_WAIT_SECONDS=300
147
148
- PUBKEYFILE=`mktemp -u /tmp/ssh_key_pub.XXXXXX`
+ local PUBKEYFILE=`mktemp -u /tmp/ssh_key_pub.XXXXXX`
149
150
ssh-keygen -R $HOST
151
0 commit comments