Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Require cron recipe in default recipe. #11

Merged
merged 1 commit into from Feb 12, 2013
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion metadata.rb
Expand Up @@ -9,7 +9,7 @@
recipe "drupal::cron", "Sets up the default drupal cron"
recipe "drupal::drush", "Installs drush - a command line shell and scripting interface for Drupal"

%w{ postfix php apache2 mysql openssl firewall }.each do |cb|
%w{ postfix php apache2 mysql openssl firewall cron }.each do |cb|
depends cb
end

Expand Down
1 change: 1 addition & 0 deletions recipes/default.rb
Expand Up @@ -21,6 +21,7 @@
include_recipe %w{apache2 apache2::mod_php5 apache2::mod_rewrite apache2::mod_expires}
include_recipe %w{php php::module_mysql php::module_gd}
include_recipe "postfix"
include_recipe "cron"
include_recipe "drupal::drush"

if node['drupal']['site']['host'] == "localhost"
Expand Down