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
This commit is contained in:
Thomas Bechtold 2015-12-14 14:38:26 +01:00 committed by Ben Swartzlander
parent 8caad2655c
commit 43fbbe61c8
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,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",