1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-25 23:21:29 +03:00

bug #847: Add driver option

This commit is contained in:
Daniel Molina 2011-10-26 12:27:11 +02:00
parent 2435048612
commit 84d42493e2

View File

@ -52,7 +52,6 @@ cmd=CommandParser::CmdParser.new(ARGV) do
SHA1={
:name => "sha1",
:short => "-s",
:large => "--sha1",
:description => "The password will be hashed using the sha1 algorithm"
}
@ -114,7 +113,14 @@ cmd=CommandParser::CmdParser.new(ARGV) do
:description => "Token duration in seconds, defaults to 3600 (1 h)"
}
create_options = [READ_FILE, SHA1, SSH, X509, KEY, CERT]
DRIVER={
:name => "driver",
:large => "--driver driver",
:format => String,
:description => "Driver to autehnticate this user"
}
create_options = [READ_FILE, SHA1, SSH, X509, KEY, CERT, DRIVER]
login_options = [SSH, X509, X509_PROXY, KEY, CERT, PROXY, TIME]
########################################################################