smart_proxy_salt 6.0.0 → 6.1.0

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
  SHA256:
3
- metadata.gz: fd14287d87c9ed2e41a86539f25b52f741549f20501b5f6dc7936075cca3fdad
4
- data.tar.gz: af25b8597c836c1b5a8fd726612f6c49d05a87b50e877c19f42e2836d97c1717
3
+ metadata.gz: a197d5fdfffc912f35d6342a2b04384e35fd88a83de7c47c644c798521931ce5
4
+ data.tar.gz: 32ea0a30d5215bd86646cc36ae3b97915d3ad6c22bc70bd798f07f838c247c0b
5
5
  SHA512:
6
- metadata.gz: ecdaa039f92b673ab76340da06d92397d01980baf5c7956687cd2314ff1e8e579af6beed07f1a966312c285adc30606895a3c1545ffb0e38b8a68bc087328b76
7
- data.tar.gz: 23853c34472f6cbb3a674c5c88806167c5f6be692032ecc08a474ae335ad842e477ce8425a8ef35787878b51128bad278bf90bca014b3fbc5c6937062e297889
6
+ metadata.gz: 0a4d9ee99a8826789102b83094d5d38dc8adfc262d8ec360aec0cb15aecb7ae58aab4f6364cc6f721c0c03098a719acaf28caa57c26a038f3dd7637ad35d78cc
7
+ data.tar.gz: 29b88c7eba04cb207e68570f0a9d0809a97a3a6479c7bf85e57f0905a50836938bda78ec04c4ef9565434c4873aca0e4331dd031d7d321b27330ea3a49667af3
@@ -3,9 +3,9 @@
3
3
  :host: foreman.example.com
4
4
  :port: 443
5
5
  # if using http with ssl certificates
6
- :ssl_ca: "/var/lib/puppet/ssl/certs/ca.pem"
7
- :ssl_cert: "/var/lib/puppet/ssl/private_keys/foreman.example.com.pem"
8
- :ssl_key: "/var/lib/puppet/ssl/certs/foreman.example.com.pem"
6
+ :ssl_ca: "/etc/foreman-proxy/foreman_ssl_ca.pem"
7
+ :ssl_cert: "/etc/foreman-proxy/foreman_ssl_cert.pem"
8
+ :ssl_key: "/etc/foreman-proxy/foreman_ssl_key.pem"
9
9
  # if using http with username and password instead of https with certicates
10
10
  #:username: admin
11
11
  #:password: changeme
@@ -45,7 +45,7 @@ module Proxy
45
45
 
46
46
  def generate_command
47
47
  saltfile_path = ::Proxy::Salt::Plugin.settings[:saltfile]
48
- command = %w[salt --show-jid]
48
+ command = %w[sudo salt --show-jid]
49
49
  command << "--saltfile=#{saltfile_path}" if File.file?(saltfile_path)
50
50
  command << @options['name']
51
51
  command << 'state.template_str'
@@ -3,6 +3,6 @@
3
3
  module Proxy
4
4
  # Salt module
5
5
  module Salt
6
- VERSION = '6.0.0'
6
+ VERSION = '6.1.0'
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smart_proxy_salt
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 6.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Moll
@@ -16,20 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.5'
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: 0.5.0
19
+ version: '0.8'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
24
  - - "~>"
28
25
  - !ruby/object:Gem::Version
29
- version: '0.5'
30
- - - ">="
26
+ version: '0.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: csv
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.1'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
31
39
  - !ruby/object:Gem::Version
32
- version: 0.5.0
40
+ version: '3.1'
33
41
  description: This plug-in adds support for Salt to Foreman's Smart Proxy
34
42
  email: foreman-dev@googlegroups.com
35
43
  executables:
@@ -88,7 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
96
  - !ruby/object:Gem::Version
89
97
  version: '0'
90
98
  requirements: []
91
- rubygems_version: 3.6.7
99
+ rubygems_version: 3.6.9
92
100
  specification_version: 4
93
101
  summary: SaltStack Plug-In for Foreman's Smart Proxy
94
102
  test_files: []