diff options
author | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-07-06 12:27:56 +0400 |
---|---|---|
committer | Michael Polenchuk <mpolenchuk@mirantis.com> | 2017-07-06 13:00:20 +0400 |
commit | 911afead7d1f3ff1cf1b3c44f282e80140d45785 (patch) | |
tree | e0e7178626e9a37e7921a37acbb4a70f481d7272 /mcp/scripts | |
parent | de6a685915bc8bd5444217bca511da35c94b4d59 (diff) |
Enable cinder volume service
Change-Id: I29ad8fc0e504779184fdf3795dc82ce1b031dbf8
Signed-off-by: Michael Polenchuk <mpolenchuk@mirantis.com>
Diffstat (limited to 'mcp/scripts')
-rw-r--r-- | mcp/scripts/lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mcp/scripts/lib.sh b/mcp/scripts/lib.sh index bf8e3c100..b3abd21c7 100644 --- a/mcp/scripts/lib.sh +++ b/mcp/scripts/lib.sh @@ -95,7 +95,7 @@ check_connection() { # wait until ssh on Salt master is available while (($attempt <= $total_attempts)); do - ssh -i ${SSH_OPTS} ubuntu@${SALT_MASTER} uptime + ssh ${SSH_OPTS} ubuntu@${SALT_MASTER} uptime case $? in 0) echo "${attempt}> Success"; break ;; *) echo "${attempt}/${total_attempts}> ssh server ain't ready yet, waiting for ${sleep_time} seconds ..." ;; |