itamae-plugin-recipe-consul 0.1.1 → 0.1.2

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: e9d7c9bf0c490fc24900cb0a1cbfb2141afd4d8e
4
- data.tar.gz: 7b5157e6b019bca630bef1f09934b5c3c8118b10
3
+ metadata.gz: 0a4e25dae562c05a16432fc72342702646f28f14
4
+ data.tar.gz: 149b7a50dd2a66732b918b801616e119ecfe3599
5
5
  SHA512:
6
- metadata.gz: 3c02b94419cce56ee87fc5af432a8d81d3f70b4db86733d39528b0ffc7582224b8061f7a8149777c540be826c9e2e9a795b32cd1dc53126a9f53feeac080a41d
7
- data.tar.gz: c167751fb9a70a07703a480e2c9be15adcfd73ffd0387f63222746ca1202ea093a2c37a7dac4332d76ba0c9ff56dfcd850dd4ea8b0a36ed15b6e23e5127c239b
6
+ metadata.gz: 35537aead72a0135a0bf16bf41ea0b9f7c2e33c3c6e15fe9b0b8a8229d5a98777f7262eac325f78061869ab7c8115da4a1c6a0c69f89d1dbbe514d8cff608916
7
+ data.tar.gz: 52005f30a26030930223be18a58a22d468bfec26e181a97a0afb04b901cc19da74fb5723e63d171172b9a0689c75639b8224a45ab661c0eb1a671efb72a3047e
@@ -1,5 +1,13 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.1.1](https://github.com/sue445/itamae-plugin-recipe-consul/tree/v0.1.1) (2016-05-19)
4
+ [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-consul/compare/v0.1.0...v0.1.1)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - Refactor: Use absolute path instead of relative path [\#10](https://github.com/sue445/itamae-plugin-recipe-consul/pull/10) ([sue445](https://github.com/sue445))
9
+ - Remove needless systemctl daemon-reload [\#9](https://github.com/sue445/itamae-plugin-recipe-consul/pull/9) ([sue445](https://github.com/sue445))
10
+
3
11
  ## [v0.1.0](https://github.com/sue445/itamae-plugin-recipe-consul/tree/v0.1.0) (2016-05-18)
4
12
  [Full Changelog](https://github.com/sue445/itamae-plugin-recipe-consul/compare/v0.1.0.beta3...v0.1.0)
5
13
 
@@ -11,6 +11,7 @@ define :set_consul_systemd_unit do
11
11
  file environment_file do
12
12
  mode "644"
13
13
  content environment_content
14
+ notifies :restart, "service[consul]"
14
15
  end
15
16
 
16
17
  template "/etc/systemd/system/consul.service" do
@@ -23,10 +24,6 @@ define :set_consul_systemd_unit do
23
24
 
24
25
  notifies :restart, "service[consul]"
25
26
  end
26
-
27
- execute "systemctl daemon-reload" do
28
- action :nothing
29
- end
30
27
  end
31
28
 
32
29
  # Set init.d script
@@ -36,6 +33,7 @@ define :set_consul_initd_script do
36
33
  file environment_file do
37
34
  mode "644"
38
35
  content environment_content
36
+ notifies :restart, "service[consul]"
39
37
  end
40
38
 
41
39
  template "/etc/init.d/consul" do
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module Consul
5
- VERSION = "0.1.1"
5
+ VERSION = "0.1.2"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itamae-plugin-recipe-consul
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445