We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47fcf6c commit bfcc65bCopy full SHA for bfcc65b
metadata.rb
@@ -3,7 +3,7 @@
3
license "Apache 2.0"
4
description "Installs/Configures Zend Server Community Edition"
5
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
6
-version "0.1.0"
+version "0.2.0"
7
8
depends "apt"
9
supports "ubuntu"
recipes/default.rb
@@ -28,3 +28,9 @@
28
end
29
30
package "zend-server-ce-php-#{node[:zend][:php][:version]}"
31
+
32
+service "zend" do
33
+ service_name "zend-server"
34
+ supports :status => true, :restart => true
35
+ action [ :enable, :start ]
36
+end
0 commit comments