Skip to content
This repository has been archived by the owner on Sep 29, 2020. It is now read-only.

Issue 57 bump version apache24 #60

Merged
merged 4 commits into from
Apr 2, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions attributes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 17,4 @@
# limitations under the License.
#

# ::Chef::Node.send(:include, Opscode::OpenSSL::Password)

default['application']['admin']['email'] = '[email protected]'
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@
license 'Apache 2.0'
description 'Installs/Configures ZF2'
long_description 'Installs/Configures ZF2'
version '0.7.2'
version '0.7.3'

# baseserver
depends 'baseserver', '~> 0.7.10'
Expand Down
23 changes: 17 additions & 6 deletions recipes/php.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 7,29 @@
# All rights reserved - Do Not Redistribute
#

# include_recipe 'zf2::webserver'

# repository is also added to default, because of the issue:
# installing php5.3 during compiletime. and never installing php5.4

apt_repository 'php-5.4' do
uri 'http://ppa.launchpad.net/ondrej/php5-oldstable/ubuntu'
distribution node['lsb']['codename']
components ['main']
keyserver 'keyserver.ubuntu.com'
key 'E5267A6C'
uri 'http://ppa.launchpad.net/ondrej/php5-oldstable/ubuntu'
distribution node['lsb']['codename']
components ['main']
keyserver 'keyserver.ubuntu.com'
key 'E5267A6C'
only_if { node['php']['set_version'] == '5.4' }
action :add
end

include_recipe 'php'
apt_repository 'php-5.4' do
# uri 'http://ppa.launchpad.net/ondrej/php5-oldstable/ubuntu'
# distribution node['lsb']['codename']
# components ['main']
# keyserver 'keyserver.ubuntu.com'
# key 'E5267A6C'
only_if { node['php']['set_version'] != '5.4' }
action :remove
end

include_recipe 'php'
6 changes: 3 additions & 3 deletions recipes/servernode.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 21,10 @@

include_recipe 'zf2::database'

include_recipe 'zf2::webserver'

include_recipe 'zf2::php'

include_recipe 'zf2::nodejs'

include_recipe 'zf2::projects'

include_recipe 'zf2::webserver'
include_recipe 'zf2::projects'