chef-handler-slnky 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 +4 -4
- data/README.md +3 -3
- data/lib/chef/handler/slnky.rb +1 -1
- data/lib/chef/handler/slnky/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f84a23c80e0f8df32b75086e92d83502a5e25db
|
4
|
+
data.tar.gz: 50e67b1edda751bd9cb7be31da4e5f28288146ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8c8e877a4ad738f696ef8c8713cd1e17be6213091769d5e7a7aaffe238b1dcb351a29d872ccd17c2b65dc33dcc4e17c8730cbb676fee4eec05487287352dd56
|
7
|
+
data.tar.gz: 0953c5a2381fd9cf52c07287f02cf05a082afcceb757406db7413cf172c65a2ce0a94fd6b96ce053e789c407512bb3dcf41f0a7f1b768ee58a1d9c5c2ae66905
|
data/README.md
CHANGED
@@ -29,8 +29,8 @@ Then add to the configuration (`/etc/chef/solo.rb` for chef-solo or
|
|
29
29
|
`/etc/chef/client.rb` for chef-client):
|
30
30
|
|
31
31
|
require "chef/handler/slnky"
|
32
|
-
report_handlers << Chef::Handler::
|
33
|
-
exception_handlers << Chef::Handler::
|
32
|
+
report_handlers << Chef::Handler::SlnkyHandler.new
|
33
|
+
exception_handlers << Chef::Handler::SlnkyHandler.new
|
34
34
|
|
35
35
|
### Method 2
|
36
36
|
|
@@ -43,7 +43,7 @@ Create a recipe with the following:
|
|
43
43
|
node.set['slnky']['url']
|
44
44
|
|
45
45
|
# Then activate the handler with the `chef_handler` LWRP
|
46
|
-
chef_handler "Chef::Handler::
|
46
|
+
chef_handler "Chef::Handler::SlnkyHandler" do
|
47
47
|
source "chef/handler/slnky"
|
48
48
|
action :enable
|
49
49
|
end
|
data/lib/chef/handler/slnky.rb
CHANGED