smart_proxy_discovery_image 1.0.6 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4dc7cb1398ac217438e11f78f53d58526a2c295
|
4
|
+
data.tar.gz: 1724af6417967817b778f7529996ab85a6d6650b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8ee13bb9505903bff9c0c989ccd2daaf6d4cec08f8efccf4b7e52759f03c4b1cd8814276c32e812d95b06831a800cc97c00f4d625482ca524c2d30e14bbc68e
|
7
|
+
data.tar.gz: 738479e7aebcdd9a8e2f8cc653cdc231c2bd3b9e4c112446ff2d7993fd90242eef3de427d6389021efde1d0943ec660a76078acfac0dd0a29c530ed92ed0f5eb
|
@@ -7,16 +7,21 @@ module Proxy::DiscoveryImage
|
|
7
7
|
include Proxy::Util
|
8
8
|
|
9
9
|
put "/reboot" do
|
10
|
-
log_halt
|
10
|
+
log_halt(500, "shutdown binary was not found") unless (shutdown = which('shutdown'))
|
11
11
|
run_after_response 5, shutdown, "-r", "now", "Foreman Power API reboot"
|
12
12
|
content_type :json
|
13
13
|
{ :result => true }.to_json
|
14
14
|
end
|
15
15
|
|
16
16
|
put "/kexec" do
|
17
|
-
|
18
|
-
|
19
|
-
|
17
|
+
body_data = request.body.read
|
18
|
+
logger.debug "Initiated kexec provisioning with #{body_data}"
|
19
|
+
log_halt(500, "kexec binary was not found") unless (kexec = which('kexec'))
|
20
|
+
begin
|
21
|
+
data = JSON.parse body_data
|
22
|
+
rescue JSON::ParserError
|
23
|
+
log_halt 500, "Unable to parse kexec JSON input: #{body_data}"
|
24
|
+
end
|
20
25
|
logger.debug "Downloading: #{data['kernel']}"
|
21
26
|
if ::Proxy::HttpDownload.new(data['kernel'], '/tmp/vmlinuz').start.join != 0
|
22
27
|
log_halt 500, "cannot download kernel for kexec!"
|
@@ -33,7 +38,7 @@ module Proxy::DiscoveryImage
|
|
33
38
|
# Execute command in a separate thread after 5 seconds to give the server some
|
34
39
|
# time to finish the request. Does *not* execute via a shell.
|
35
40
|
def run_after_response(seconds, *command)
|
36
|
-
logger.debug "Power API
|
41
|
+
logger.debug "Power API scheduling in #{seconds} seconds: #{command.inspect}"
|
37
42
|
Thread.start do
|
38
43
|
begin
|
39
44
|
sleep seconds
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: smart_proxy_discovery_image
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lukas Zapletal
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |2
|
14
14
|
Smart Proxy plugin providing Image API on discovered nodes. This plugin is only
|
@@ -32,7 +32,7 @@ files:
|
|
32
32
|
- settings.d/discovery_image.yml.example
|
33
33
|
homepage: http://github.com/theforeman/smart_proxy_discovery_image
|
34
34
|
licenses:
|
35
|
-
-
|
35
|
+
- GPL-3.0
|
36
36
|
metadata: {}
|
37
37
|
post_install_message:
|
38
38
|
rdoc_options: []
|