oxidized 0.26.1 → 0.26.2
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/.rubocop_todo.yml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +1 -1
- data/lib/oxidized/input/ssh.rb +1 -1
- data/lib/oxidized/version.rb +2 -2
- 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: 88ba16bc352e1c3b144a870c2c16054d3000aba43990cfd7a4bdbbad4c8d4882
|
|
4
|
+
data.tar.gz: d7f213a82a1a775ab4443b43120dc006bb327c67d5de70436e2a103206e142af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2653389358fe2baca2825bf1bbc7180497716fac6a52ace6a039146541be735882d157b847001d10fd42f9afac3912f4d2abd982bdc655ce90087a1aec8e766
|
|
7
|
+
data.tar.gz: b8850e889bcb37e3812545eea75e75a276cba3d63ada0f3cc0afee3d3e636fcc6219d8c15c155bc5e7093d4f35e2fe752cd195925da9d1d8daabac4be777cf93
|
data/.rubocop_todo.yml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on 2019-03-
|
|
3
|
+
# on 2019-03-05 07:37:06 +0100 using RuboCop version 0.65.0.
|
|
4
4
|
# The point is for the user to remove these configuration records
|
|
5
5
|
# one by one as the offenses are removed from the code base.
|
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
|
@@ -23,9 +23,9 @@ Metrics/ClassLength:
|
|
|
23
23
|
|
|
24
24
|
# Offense count: 11
|
|
25
25
|
Metrics/CyclomaticComplexity:
|
|
26
|
-
Max:
|
|
26
|
+
Max: 14
|
|
27
27
|
|
|
28
|
-
# Offense count:
|
|
28
|
+
# Offense count: 60
|
|
29
29
|
# Configuration parameters: CountComments, ExcludedMethods.
|
|
30
30
|
Metrics/MethodLength:
|
|
31
31
|
Max: 41
|
|
@@ -37,7 +37,7 @@ Metrics/ParameterLists:
|
|
|
37
37
|
|
|
38
38
|
# Offense count: 10
|
|
39
39
|
Metrics/PerceivedComplexity:
|
|
40
|
-
Max:
|
|
40
|
+
Max: 14
|
|
41
41
|
|
|
42
42
|
# Offense count: 1
|
|
43
43
|
Naming/AccessorMethodName:
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
data/lib/oxidized/input/ssh.rb
CHANGED
|
@@ -124,7 +124,7 @@ module Oxidized
|
|
|
124
124
|
ssh_opts = {
|
|
125
125
|
number_of_password_prompts: 0,
|
|
126
126
|
keepalive: vars(:ssh_no_keepalive) ? false : true,
|
|
127
|
-
|
|
127
|
+
verify_host_key: secure ? :always : :never,
|
|
128
128
|
password: @node.auth[:password],
|
|
129
129
|
timeout: Oxidized.config.timeout,
|
|
130
130
|
port: (vars(:ssh_port) || 22).to_i
|
data/lib/oxidized/version.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module Oxidized
|
|
2
|
-
VERSION = '0.26.
|
|
3
|
-
VERSION_FULL = '0.26.
|
|
2
|
+
VERSION = '0.26.2'.freeze
|
|
3
|
+
VERSION_FULL = '0.26.2'.freeze
|
|
4
4
|
def self.version_set
|
|
5
5
|
version_full = %x(git describe --tags).chop rescue ""
|
|
6
6
|
version = %x(git describe --tags --abbrev=0).chop rescue ""
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oxidized
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.26.
|
|
4
|
+
version: 0.26.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Saku Ytti
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2019-03-
|
|
13
|
+
date: 2019-03-05 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: asetus
|