Change instance service default path for private key to None

When setting the default for path_to_private_key to "~/.ssh/id_rsa"
it's impossible to disable private_key usage within a driver section.
So set the default to "None".

Change-Id: I17f6b24fc6581dde2b1784b9cdb7778d251145c1
Closes-Bug: #1522074
(cherry picked from commit 43fbbe61c8)
This commit is contained in:
Thomas Bechtold 2015-12-14 14:38:26 +01:00 committed by Ben Swartzlander
parent eb075d839f
commit 560548f7f8
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ common_opts = [
help="Password for service instance user."),
cfg.StrOpt(
"path_to_private_key",
default="~/.ssh/id_rsa",
default=None,
help="Path to host's private key."),
cfg.IntOpt(
"max_time_to_build_instance",