itamae-plugin-recipe-god 0.2.8 → 0.2.9

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
  SHA256:
3
- metadata.gz: cba703e117bbca5fe661f96dcffaaddd9818af1ee843876f617d8e39123bd2f0
4
- data.tar.gz: '0319d718155e1d81e6f398c4e5173feb8b384e60a7341d47764a94f607ded931'
3
+ metadata.gz: 00a09599e403184ea0a1c8a9a769a74de78efe4abf2dd92ddceae0a3a37e40ae
4
+ data.tar.gz: c4234291197ca3c9fd643324f49932eca6434c6cb7a9cd1658280a7d1d4c9c30
5
5
  SHA512:
6
- metadata.gz: 9916973aefc362011a01f3fcace1bdf5f307f01428832074251d100a7203664ec7ef409760967c3c94e7f87696e3b84a3d716262f4fb98d342eaf8f82582c967
7
- data.tar.gz: cb745de10e7647309100a98da54ffbdc37a8654a1ba5c627429edfa488786e8b59a6cd6bf3848c9ccdb97e03c6af26fa42fdff10f2603b898aa597a0a1d49ae1
6
+ metadata.gz: 116b489e4297fd2788ec26713a08e38b2f0eb5962c957bbf28d5906448873ff40f2b7cbda8c6c3f41ba1b02e05dafa4dd59c426e077f8f00614194d29253aff5
7
+ data.tar.gz: c2573b47ce8eb1dab84a13e61bd4caa217ec9a3e831d597b2e54a6a9e460dd7845a7ac1a79faf0cc0ef443f7d54a53f6270a52a9518660de2392fc3b02cfc4d7
@@ -40,7 +40,21 @@ template '/etc/god/master.conf' do
40
40
  mode '644'
41
41
  end
42
42
 
43
- god_bin = ENV['GOD_BIN'] || `sudo which god`.chomp
43
+ # Non-frozen string
44
+ god_bin = +"#{ENV['GOD_BIN'] || ''}"
45
+ if god_bin.empty?
46
+ # Tentatively, god command is located in ruby binary directory.
47
+ ruby_bin_dir = node.languages.ruby.bin_dir rescue nil
48
+ god_bin.replace(ruby_bin_dir ? "#{ruby_bin_dir}/god" : 'god')
49
+
50
+ # Locate god command on host.
51
+ local_ruby_block 'which god' do
52
+ block do
53
+ bin_path = run_command('sudo which god').stdout.chomp
54
+ god_bin.replace(bin_path) unless bin_path.empty?
55
+ end
56
+ end
57
+ end
44
58
 
45
59
  service_variables = {
46
60
  god_bin: god_bin,
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module God
5
- VERSION = '0.2.8'
5
+ VERSION = '0.2.9'
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itamae-plugin-recipe-god
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.8
4
+ version: 0.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - y-matsuda
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-04 00:00:00.000000000 Z
11
+ date: 2024-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: itamae