mirror of
https://github.com/puppetlabs/vmfloaty.git
synced 2026-01-26 05:28:40 -05:00
Respect token from config file
This commit is contained in:
parent
f8cc329447
commit
3e7b2b54fe
1 changed files with 4 additions and 4 deletions
|
|
@ -107,7 +107,7 @@ class Vmfloaty
|
||||||
hostname = options.host
|
hostname = options.host
|
||||||
lifetime = options.lifetime
|
lifetime = options.lifetime
|
||||||
tags = options.tags
|
tags = options.tags
|
||||||
token = options.token
|
token = options.token || config['token']
|
||||||
|
|
||||||
res_body = Pooler.modify(verbose, url, hostname, token, lifetime, tags)
|
res_body = Pooler.modify(verbose, url, hostname, token, lifetime, tags)
|
||||||
puts res_body
|
puts res_body
|
||||||
|
|
@ -144,7 +144,7 @@ class Vmfloaty
|
||||||
verbose = options.verbose || config['verbose']
|
verbose = options.verbose || config['verbose']
|
||||||
url = options.url ||= config['url']
|
url = options.url ||= config['url']
|
||||||
hostname = options.host
|
hostname = options.host
|
||||||
token = options.token
|
token = options.token ||= config['token']
|
||||||
|
|
||||||
res_body = Pooler.snapshot(verbose, url, hostname, token)
|
res_body = Pooler.snapshot(verbose, url, hostname, token)
|
||||||
puts res_body
|
puts res_body
|
||||||
|
|
@ -165,7 +165,7 @@ class Vmfloaty
|
||||||
verbose = options.verbose || config['verbose']
|
verbose = options.verbose || config['verbose']
|
||||||
url = options.url ||= config['url']
|
url = options.url ||= config['url']
|
||||||
hostname = options.host
|
hostname = options.host
|
||||||
token = options.token
|
token = options.token || config['token']
|
||||||
snapshot_sha = options.snapshot
|
snapshot_sha = options.snapshot
|
||||||
|
|
||||||
res_body = Pooler.revert(verbose, url, hostname, token, snapshot_sha)
|
res_body = Pooler.revert(verbose, url, hostname, token, snapshot_sha)
|
||||||
|
|
@ -218,7 +218,7 @@ class Vmfloaty
|
||||||
verbose = options.verbose || config['verbose']
|
verbose = options.verbose || config['verbose']
|
||||||
action = args.first
|
action = args.first
|
||||||
url = options.url ||= config['url']
|
url = options.url ||= config['url']
|
||||||
token = options.token
|
token = options.token ||= config['token']
|
||||||
user = options.user ||= config['user']
|
user = options.user ||= config['user']
|
||||||
pass = password "Enter your password please:", '*'
|
pass = password "Enter your password please:", '*'
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue