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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a4e25dae562c05a16432fc72342702646f28f14
|
4
|
+
data.tar.gz: 149b7a50dd2a66732b918b801616e119ecfe3599
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35537aead72a0135a0bf16bf41ea0b9f7c2e33c3c6e15fe9b0b8a8229d5a98777f7262eac325f78061869ab7c8115da4a1c6a0c69f89d1dbbe514d8cff608916
|
7
|
+
data.tar.gz: 52005f30a26030930223be18a58a22d468bfec26e181a97a0afb04b901cc19da74fb5723e63d171172b9a0689c75639b8224a45ab661c0eb1a671efb72a3047e
|
data/CHANGELOG.md
CHANGED
@@ -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
|