smart_proxy_remote_execution_ssh 0.1.5 → 0.1.6
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: f1fa864f93c540a4c0c0e1cb837c4ed96962bc5d
|
|
4
|
+
data.tar.gz: 8e25bfe21c97d5b15039c6396eb18d86ee3d0eb8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f525bf0fcd9c1ebd907bd18c18cda1619641f3284b8e908273f950d9b8e5bd2ddddfcee1ab72c1a8f0aab12433670effea419bf7df5c5cb69a8761b135f4349c
|
|
7
|
+
data.tar.gz: eee8395b05faed6a1b0889dc46d3c4a1a73807187701d8c505b4bc8650573d3507aeda0e9de92401cefaac2442a46c0d68dd53a88b9ed882b779a1b23d41f8ad
|
|
@@ -4,11 +4,12 @@ module Proxy::RemoteExecution::Ssh
|
|
|
4
4
|
https_rackup_path File.expand_path("http_config.ru", File.expand_path("../", __FILE__))
|
|
5
5
|
|
|
6
6
|
settings_file "remote_execution_ssh.yml"
|
|
7
|
-
default_settings :ssh_identity_key_file
|
|
8
|
-
:ssh_user
|
|
9
|
-
:remote_working_dir
|
|
10
|
-
:local_working_dir
|
|
11
|
-
:kerberos_auth
|
|
7
|
+
default_settings :ssh_identity_key_file => '~/.ssh/id_rsa_foreman_proxy',
|
|
8
|
+
:ssh_user => 'root',
|
|
9
|
+
:remote_working_dir => '/var/tmp',
|
|
10
|
+
:local_working_dir => '/var/tmp',
|
|
11
|
+
:kerberos_auth => false,
|
|
12
|
+
:async_ssh => false
|
|
12
13
|
|
|
13
14
|
plugin :ssh, Proxy::RemoteExecution::Ssh::VERSION
|
|
14
15
|
after_activation do
|
|
@@ -4,3 +4,9 @@
|
|
|
4
4
|
:local_working_dir: '/var/tmp'
|
|
5
5
|
:remote_working_dir: '/var/tmp'
|
|
6
6
|
# :kerberos_auth: false
|
|
7
|
+
# :async_ssh: false
|
|
8
|
+
|
|
9
|
+
# Defines how often (in seconds) should the runner check
|
|
10
|
+
# for new data leave empty to use the runner's default
|
|
11
|
+
# (1 second for regular, 60 seconds with async_ssh enabled)
|
|
12
|
+
# :runner_refresh_interval:
|
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.6
|
|
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: 2017-
|
|
11
|
+
date: 2017-10-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -161,7 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
161
161
|
version: '0'
|
|
162
162
|
requirements: []
|
|
163
163
|
rubyforge_project:
|
|
164
|
-
rubygems_version: 2.
|
|
164
|
+
rubygems_version: 2.6.12
|
|
165
165
|
signing_key:
|
|
166
166
|
specification_version: 4
|
|
167
167
|
summary: Ssh remote execution provider for Foreman Smart-Proxy
|