From 77fbc47bb2095d709f9bad7311c0919677925f59 Mon Sep 17 00:00:00 2001 From: Ivan Evtukhovich Date: Sun, 22 Sep 2013 09:25:54 +0400 Subject: [PATCH] Add notifications --- inhouse-cookbooks/fake/recipes/notifications.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 inhouse-cookbooks/fake/recipes/notifications.rb diff --git a/inhouse-cookbooks/fake/recipes/notifications.rb b/inhouse-cookbooks/fake/recipes/notifications.rb new file mode 100644 index 0000000..fcc9033 --- /dev/null +++ b/inhouse-cookbooks/fake/recipes/notifications.rb @@ -0,0 +1,13 @@ +execute "echo 1" do +# action :nothing +end + +execute "echo 2" do +# notifies :run, "execute[echo 1]", :delayed +end + +execute "echo 3" do +# notifies :run, "execute[echo 1]", :delayed +end + +execute "echo 4"