foreman_probing 0.0.3 → 0.0.4
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/app/lib/actions/perform_scan.rb +1 -1
- data/app/lib/actions/scan_host.rb +1 -1
- data/lib/foreman_probing/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ad8e0ab878442dd977f582e5e4f5223c32107e38a9cf7d262e58e1dee2619773
|
|
4
|
+
data.tar.gz: b86ad10cf54e3fc1d8365e0fa99a79b21beac28dfbe38dcc9fd6db71457df4de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 992e34f42c62bcdf66e12f34389180c1d7f18dcdb22e70fff5dfec1e0cb1bfef540d5b88146a68ac8d8c6c8060f900d605e33869b03d3e618b3a503c1ecae71c
|
|
7
|
+
data.tar.gz: 45bcd85078ac20aa1818e02c57017c4dd050167bfb66ccca3bddd0a5bc715e6a872653505421a1f5f7fc05740e5b904f0ab6f82cb02522ee63c0c44c735c9387
|
|
@@ -9,7 +9,7 @@ module Actions
|
|
|
9
9
|
|
|
10
10
|
def plan(scan, ports, options = {})
|
|
11
11
|
options[:subnet_discovery] = true if scan.targeting.is_a? ::ForemanProbing::Targeting::SubnetDiscovery
|
|
12
|
-
scanned = plan_delegated_action(scan.smart_proxy, '
|
|
12
|
+
scanned = plan_delegated_action(scan.smart_proxy, 'Proxy::Probing::Actions::UseProbe',
|
|
13
13
|
:targets => scan.targeting.targets,
|
|
14
14
|
:scan_type => scan.scan_type,
|
|
15
15
|
:ports => ports,
|
|
@@ -11,7 +11,7 @@ module Actions
|
|
|
11
11
|
|
|
12
12
|
hostname = find_ip_or_hostname(host)
|
|
13
13
|
proxy = proxy_selector.determine_proxy(host)
|
|
14
|
-
plan_delegated_action(proxy,
|
|
14
|
+
plan_delegated_action(proxy, 'Proxy::Probing::Actions::UseProbe', hostname, probes, port_overrides)
|
|
15
15
|
plan_self
|
|
16
16
|
end
|
|
17
17
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: foreman_probing
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Ruzicka
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-10-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: deface
|
|
@@ -133,7 +133,7 @@ homepage: https://github.com/adamruzicka/foreman_probing
|
|
|
133
133
|
licenses:
|
|
134
134
|
- GPL-3.0
|
|
135
135
|
metadata: {}
|
|
136
|
-
post_install_message:
|
|
136
|
+
post_install_message:
|
|
137
137
|
rdoc_options: []
|
|
138
138
|
require_paths:
|
|
139
139
|
- lib
|
|
@@ -148,8 +148,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
148
148
|
- !ruby/object:Gem::Version
|
|
149
149
|
version: '0'
|
|
150
150
|
requirements: []
|
|
151
|
-
rubygems_version: 3.
|
|
152
|
-
signing_key:
|
|
151
|
+
rubygems_version: 3.1.2
|
|
152
|
+
signing_key:
|
|
153
153
|
specification_version: 4
|
|
154
154
|
summary: Foreman plugin for detecting network devices
|
|
155
155
|
test_files:
|