network-utility 1.1.38 → 1.1.39
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/document/static-MA5200G-8.md +1 -1
- data/document/static-ME60-16.md +1 -1
- data/document/static-ME60-X16.md +1 -1
- data/document/static-NE40E-X16.md +1 -1
- data/document/static-NE40E-X16A.md +1 -1
- data/document/static-NE40E-X8.md +1 -1
- data/document/static-NE40E.md +1 -1
- data/document/static-NE80E.md +1 -1
- data/network.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: 7c2dc9bc77702947c4a064178253c7f85252172f3cf339862fece0d8f3f5301e
|
|
4
|
+
data.tar.gz: e2c5978914f3ce9bea4cac63eb1ea421fe864690f3ea5f46fcddd30d00383b7d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2a04a8f51c09f505447032c1888cbe52c0b219d5f514c3287416aed4eb88dcffc66b3d926004bd860ded59fc1331877858744fa0497ede484d4e18d00ec407e
|
|
7
|
+
data.tar.gz: 380e1308c159efe22c395c613e7d8511242c65e6f9d841eb3262fd0136c31a74d80ba320fefaa5feb722448fb4e5c9ec61f7b6bde8840e9857955e17b6785672
|
|
@@ -14,7 +14,7 @@ module MA5200G_8
|
|
|
14
14
|
if part.include?('route-static')
|
|
15
15
|
part.split("\n").each do|line|
|
|
16
16
|
items = line.split(" ")
|
|
17
|
-
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1] : ["static"]+items[2..-1]
|
|
17
|
+
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1].to_a : ["static"]+items[2..-1].to_a
|
|
18
18
|
static_routes << record
|
|
19
19
|
end
|
|
20
20
|
end
|
data/document/static-ME60-16.md
CHANGED
|
@@ -14,7 +14,7 @@ module ME60_16
|
|
|
14
14
|
if part.include?('route-static')
|
|
15
15
|
part.split("\n").each do|line|
|
|
16
16
|
items = line.split(" ")
|
|
17
|
-
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1] : ["static"]+items[2..-1]
|
|
17
|
+
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1].to_a : ["static"]+items[2..-1].to_a
|
|
18
18
|
static_routes << record
|
|
19
19
|
end
|
|
20
20
|
end
|
data/document/static-ME60-X16.md
CHANGED
|
@@ -14,7 +14,7 @@ module ME60_X16
|
|
|
14
14
|
if part.include?('route-static')
|
|
15
15
|
part.split("\n").each do|line|
|
|
16
16
|
items = line.split(" ")
|
|
17
|
-
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1] : ["static"]+items[2..-1]
|
|
17
|
+
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1].to_a : ["static"]+items[2..-1].to_a
|
|
18
18
|
static_routes << record
|
|
19
19
|
end
|
|
20
20
|
end
|
|
@@ -14,7 +14,7 @@ module NE40E_X16
|
|
|
14
14
|
if part.include?('route-static')
|
|
15
15
|
part.split("\n").each do|line|
|
|
16
16
|
items = line.split(" ")
|
|
17
|
-
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1] : ["static"]+items[2..-1]
|
|
17
|
+
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1].to_a : ["static"]+items[2..-1].to_a
|
|
18
18
|
static_routes << record
|
|
19
19
|
end
|
|
20
20
|
end
|
|
@@ -14,7 +14,7 @@ module NE40E_X16A
|
|
|
14
14
|
if part.include?('route-static')
|
|
15
15
|
part.split("\n").each do|line|
|
|
16
16
|
items = line.split(" ")
|
|
17
|
-
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1] : ["static"]+items[2..-1]
|
|
17
|
+
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1].to_a : ["static"]+items[2..-1].to_a
|
|
18
18
|
static_routes << record
|
|
19
19
|
end
|
|
20
20
|
end
|
data/document/static-NE40E-X8.md
CHANGED
|
@@ -14,7 +14,7 @@ module NE40E_X8
|
|
|
14
14
|
if part.include?('route-static')
|
|
15
15
|
part.split("\n").each do|line|
|
|
16
16
|
items = line.split(" ")
|
|
17
|
-
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1] : ["static"]+items[2..-1]
|
|
17
|
+
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1].to_a : ["static"]+items[2..-1].to_a
|
|
18
18
|
static_routes << record
|
|
19
19
|
end
|
|
20
20
|
end
|
data/document/static-NE40E.md
CHANGED
|
@@ -14,7 +14,7 @@ module NE40E
|
|
|
14
14
|
if part.include?('route-static')
|
|
15
15
|
part.split("\n").each do|line|
|
|
16
16
|
items = line.split(" ")
|
|
17
|
-
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1] : ["static"]+items[2..-1]
|
|
17
|
+
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1].to_a : ["static"]+items[2..-1].to_a
|
|
18
18
|
static_routes << record
|
|
19
19
|
end
|
|
20
20
|
end
|
data/document/static-NE80E.md
CHANGED
|
@@ -14,7 +14,7 @@ module NE80E
|
|
|
14
14
|
if part.include?('route-static')
|
|
15
15
|
part.split("\n").each do|line|
|
|
16
16
|
items = line.split(" ")
|
|
17
|
-
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1] : ["static"]+items[2..-1]
|
|
17
|
+
record = items[2].include?('vpn-') ? ["static:#{items[3]}"]+items[4..-1].to_a : ["static"]+items[2..-1].to_a
|
|
18
18
|
static_routes << record
|
|
19
19
|
end
|
|
20
20
|
end
|
data/network.rb
CHANGED