morpheus-cli 4.2.13 → 4.2.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Dockerfile +1 -1
- data/lib/morpheus/cli/credentials.rb +1 -1
- data/lib/morpheus/cli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e12da692ad20d0ab6db265ec26da63bdd71dbe110381586cea320ac83fe09de2
|
|
4
|
+
data.tar.gz: deb39862ff91c6da7bdfe4d2a3a616c6daea0a4b1192f514b78d27d5c8eb22dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ec460c3243e1f19153f3889b1fda253a17ff5ddc81b26e7fd43313250c76b8e4bac0c534174270377ffb4b0e027515722fd7564f5a7a3b06307c2b3559fdcd2f
|
|
7
|
+
data.tar.gz: 8e98be2498dd435aab6e4ed09d46e41a380df9a29f0a39a760d4f20a5d965b9254f34eb0fc65d821d8874a8a4eebca04f7aa3af17afb8c5593e73cb79f25a778
|
data/Dockerfile
CHANGED
|
@@ -57,7 +57,7 @@ module Morpheus
|
|
|
57
57
|
# for now, it just stores the access token without other wallet info
|
|
58
58
|
begin
|
|
59
59
|
# @setup_interface = Morpheus::SetupInterface.new({url:@appliance_url,access_token:@access_token})
|
|
60
|
-
whoami_interface = Morpheus::WhoamiInterface.new({url: @appliance_url,
|
|
60
|
+
whoami_interface = Morpheus::WhoamiInterface.new({url: @appliance_url, access_token: options[:remote_token]})
|
|
61
61
|
whoami_interface.setopts(options)
|
|
62
62
|
if options[:dry_run]
|
|
63
63
|
print_dry_run whoami_interface.dry.get()
|
data/lib/morpheus/cli/version.rb
CHANGED