diff options
author | Adam Jacob <adam@hjksolutions.com> | 2009-01-30 17:21:22 -0800 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2009-01-30 17:21:22 -0800 |
commit | 973a1b5025f1e312d31b7ff2d3b92add1677d990 (patch) | |
tree | aab347fce64c38e5a7f96dc1e9d069d531e3ff6e /example-repository | |
parent | d486a5a06e1153cbd7455f26acff9d6e0e90a442 (diff) | |
download | chef-973a1b5025f1e312d31b7ff2d3b92add1677d990.tar.gz |
Adding a Process::WNOHANG to the waitpid2 from popen4
Diffstat (limited to 'example-repository')
-rw-r--r-- | example-repository/cookbooks/CHEF-56/recipes/default.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/example-repository/cookbooks/CHEF-56/recipes/default.rb b/example-repository/cookbooks/CHEF-56/recipes/default.rb index 9d8e93dbe5..90cd881f9c 100644 --- a/example-repository/cookbooks/CHEF-56/recipes/default.rb +++ b/example-repository/cookbooks/CHEF-56/recipes/default.rb @@ -17,7 +17,7 @@ # limitations under the License. # -service "vncserver" do - supports :status => true, :reload => true - action [ :enable, :start, :restart, :stop, :disable ] +service "gpm" do + supports :status => true, :restart => true + action [ :restart, :stop, :disable, :start, :enable ] end |