enfcli 3.9.5.pre.beta → 3.9.6.pre.beta
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/Gemfile.lock +3 -3
- data/lib/enfcli.rb +8 -3
- data/lib/enfcli/commands/captive.rb +7 -6
- data/lib/enfcli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c836073fa8165cb90c99b1935e062801b6f8f192b24e6609c6144453b49a8e12
|
|
4
|
+
data.tar.gz: fb0fee350a8dc9312f8280de04c5ca96db9cb548064d8924fa669a7ba85e4f00
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 490d4201d5e8bfc2ef6333e7f7a95273a56edf412272345c57c087ef2bb94c3a3b72dafb8d4426393d472c8d15ca941bb5eb3a228d6bab2b7c297d74365f458a
|
|
7
|
+
data.tar.gz: 5e96903a0f9a25cb5a1e5720fe699b6d125e02ce581483e775f32fb91987aaa0b7f406eb5ab0f4e18015fd349682b8b8ee2ea0f9b17f2052ab74924323687c5b
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
enfcli (3.9.
|
|
4
|
+
enfcli (3.9.6.pre.beta)
|
|
5
5
|
rest-client (~> 2.0)
|
|
6
6
|
terminal-table
|
|
7
7
|
thor (~> 0.20.0)
|
|
@@ -24,9 +24,9 @@ GEM
|
|
|
24
24
|
http-accept (1.7.0)
|
|
25
25
|
http-cookie (1.0.3)
|
|
26
26
|
domain_name (~> 0.5)
|
|
27
|
-
mime-types (3.
|
|
27
|
+
mime-types (3.3)
|
|
28
28
|
mime-types-data (~> 3.2015)
|
|
29
|
-
mime-types-data (3.2019.
|
|
29
|
+
mime-types-data (3.2019.1009)
|
|
30
30
|
netrc (0.11.0)
|
|
31
31
|
public_suffix (3.0.3)
|
|
32
32
|
rake (10.5.0)
|
data/lib/enfcli.rb
CHANGED
|
@@ -285,10 +285,15 @@ module EnfCli
|
|
|
285
285
|
class Console
|
|
286
286
|
class << self
|
|
287
287
|
def execute(input)
|
|
288
|
-
|
|
289
|
-
|
|
288
|
+
# split on space and = but leave quoted together.
|
|
289
|
+
argv = input.split(/[\s=](?=(?:[^"]|"[^"]*")*$)/)
|
|
290
|
+
# now remove quotes.
|
|
291
|
+
argv.each do |arg|
|
|
292
|
+
arg.gsub!(/\A"|"\Z/, '')
|
|
293
|
+
end
|
|
294
|
+
EnfCli::Shell::CLI.start(argv)
|
|
290
295
|
end
|
|
291
|
-
|
|
296
|
+
|
|
292
297
|
def start(host, user)
|
|
293
298
|
$stdout.sync = true
|
|
294
299
|
# Set prompt
|
|
@@ -45,12 +45,12 @@ module EnfCli
|
|
|
45
45
|
end
|
|
46
46
|
|
|
47
47
|
desc 'create-wifi-configuration', 'Create a new wifi configuration.'
|
|
48
|
-
method_option :'wifi-config-file', type: :
|
|
48
|
+
method_option :'wifi-config-file', type: :string, required: true,
|
|
49
49
|
banner: '<file>',
|
|
50
50
|
desc: '<file> is JSON file with parameters required for configuring the router card.'
|
|
51
51
|
def create_wifi_configuration
|
|
52
52
|
try_with_rescue_in_session do
|
|
53
|
-
json_file_name = options[:'wifi-config-file']
|
|
53
|
+
json_file_name = options[:'wifi-config-file']
|
|
54
54
|
|
|
55
55
|
# read in the entire file - yes it is slurping the file, but it should
|
|
56
56
|
# never be bigger than a few KB.
|
|
@@ -111,14 +111,14 @@ module EnfCli
|
|
|
111
111
|
'Update an existing wifi configuration.'
|
|
112
112
|
method_option :'wifi-id', defaut: nil, type: :string, banner: 'WIFI-ID',
|
|
113
113
|
desc: 'WIFI-ID is the UUID of the wifi profile'
|
|
114
|
-
method_option :'wifi-config-file', type: :
|
|
114
|
+
method_option :'wifi-config-file', type: :string, required: true,
|
|
115
115
|
banner: '<file>',
|
|
116
116
|
desc: '<file> is JSON file with ' \
|
|
117
117
|
'parameters required for ' \
|
|
118
118
|
'configuring the router card.'
|
|
119
119
|
def update_wifi_configuration
|
|
120
120
|
try_with_rescue_in_session do
|
|
121
|
-
json_file_name = options[:'wifi-config-file']
|
|
121
|
+
json_file_name = options[:'wifi-config-file']
|
|
122
122
|
# read in the entire file - yes it is slurping the file, but it should
|
|
123
123
|
# never be bigger than a few KB.
|
|
124
124
|
content = File.read json_file_name
|
|
@@ -264,9 +264,10 @@ module EnfCli
|
|
|
264
264
|
desc: 'WIFI-ID is the UUID of the wifi record that the profile will use. wifi record must already exist'
|
|
265
265
|
def create_profile
|
|
266
266
|
try_with_rescue_in_session do
|
|
267
|
+
profile_name = options[:'profile-name']
|
|
267
268
|
new_profile_hash = {
|
|
268
|
-
name:
|
|
269
|
-
config: {mode: options[:'device-mode']}
|
|
269
|
+
name: profile_name,
|
|
270
|
+
config: { mode: options[:'device-mode'] }
|
|
270
271
|
}
|
|
271
272
|
|
|
272
273
|
wifi = options[:'wifi-id']
|
data/lib/enfcli/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: enfcli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.9.
|
|
4
|
+
version: 3.9.6.pre.beta
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Venkatakumar Srinivasan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-10-
|
|
11
|
+
date: 2019-10-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|