smart_proxy_remote_execution_ssh 0.1.3 → 0.1.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c36c9075645ee5df967b07d261e9b647ba3cc41c
|
|
4
|
+
data.tar.gz: 18fa361681efa693d69a681eaad511256bea48f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9ee6cfd0fb7f3bb10373aec8f83d092a316c4df826a86b911fb3e7ea81f57b52809740dc485144647c00213b328234a7616147edcc89ff1e7875df4bd3fe8771
|
|
7
|
+
data.tar.gz: 0b7dbecc88ed2bed09eccf472e6b905f3e2c58132c6f3f4f4db4d8b290b6c75b7aa394433c08a1185aeeedde82ea9ff20340d2b03e8efd70ce045a4d64361121
|
data/README.md
CHANGED
|
@@ -13,8 +13,10 @@ This a plugin for foreman smart-proxy allowing using ssh for the
|
|
|
13
13
|
Add this line to your smart proxy bundler.d/ssh.rb gemfile:
|
|
14
14
|
|
|
15
15
|
```ruby
|
|
16
|
-
gem 'smart_proxy_dynflow', :git => 'https://github.com/
|
|
17
|
-
gem '
|
|
16
|
+
gem 'smart_proxy_dynflow', :git => 'https://github.com/theforeman/smart_proxy_dynflow.git'
|
|
17
|
+
gem 'smart_proxy_dynflow_core', :git => 'https://github.com/theforeman/smart_proxy_dynflow.git'
|
|
18
|
+
gem 'foreman_remote_execution_core', :git => 'https://github.com/theforeman/foreman_remote_execution.git'
|
|
19
|
+
gem 'smart_proxy_remote_execution_ssh', :git => 'https://github.com/theforeman/smart_proxy_remote_execution_ssh.git'
|
|
18
20
|
```
|
|
19
21
|
|
|
20
22
|
Enable the plugins in your smart proxy:
|
|
@@ -16,8 +16,12 @@ module Proxy::RemoteExecution::Ssh
|
|
|
16
16
|
require 'smart_proxy_remote_execution_ssh/api'
|
|
17
17
|
|
|
18
18
|
begin
|
|
19
|
-
require '
|
|
20
|
-
|
|
19
|
+
require 'smart_proxy_dynflow_core'
|
|
20
|
+
require 'foreman_remote_execution_core'
|
|
21
|
+
ForemanRemoteExecutionCore.initialize_settings(Proxy::RemoteExecution::Ssh::Plugin.settings.to_h)
|
|
22
|
+
rescue LoadError # rubocop:disable Lint/HandleExceptions
|
|
23
|
+
# Dynflow core is not available in the proxy, will be handled
|
|
24
|
+
# by standalone Dynflow core
|
|
21
25
|
end
|
|
22
26
|
|
|
23
27
|
Proxy::RemoteExecution::Ssh.validate!
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: smart_proxy_remote_execution_ssh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ivan Nečas
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-08
|
|
11
|
+
date: 2016-09-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -141,7 +141,6 @@ files:
|
|
|
141
141
|
- lib/smart_proxy_remote_execution_ssh/plugin.rb
|
|
142
142
|
- lib/smart_proxy_remote_execution_ssh/version.rb
|
|
143
143
|
- settings.d/remote_execution_ssh.yml.example
|
|
144
|
-
- settings.d/smart_proxy_remote_execution_ssh.yml.example
|
|
145
144
|
homepage: https://github.com/theforeman/smart_proxy_remote_execution_ssh
|
|
146
145
|
licenses:
|
|
147
146
|
- GPLv3
|