1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Accept public_key and public_key_path when creating GCE server

Earlier, the code forced the user to specify the :public_key_path
option when creating the server. In some cases, the user may want
to pass in the key itself (string), and not a path. This patch
changes the code to use the #public_key method, which will first
check if the key was specified, and only attempt to read the file
if it wasn't specified.
This commit is contained in:
Akshay Moghe 2013-08-01 22:49:49 -07:00
parent aa1847e7d2
commit 7f46d7ad3b

View file

@ -70,8 +70,8 @@ module Fog
end
self.metadata.merge!({
"sshKeys" => "#{username}:#{File.read(public_key_path).strip}"
}) if public_key_path
"sshKeys" => "#{username}:#{public_key.strip}"
}) if public_key
options = {
'image' => image_name,