X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/ab47927c016597f8602b81dcdc168ad5c335389d..802c8345a5d7084d60e6ba1cc3ab1e6d3ca9e8ea:/cookbooks/wordpress/recipes/default.rb diff --git a/cookbooks/wordpress/recipes/default.rb b/cookbooks/wordpress/recipes/default.rb index 73f6f353e..2849e592f 100644 --- a/cookbooks/wordpress/recipes/default.rb +++ b/cookbooks/wordpress/recipes/default.rb @@ -26,7 +26,12 @@ include_recipe "php::fpm" package %w[ subversion + php-mbstring php-mysql + php-igbinary + php-imagick + php-intl + php-xml ] apache_module "proxy" @@ -43,3 +48,16 @@ fail2ban_jail "wordpress" do ports [80, 443] maxretry 6 end + +directory "/opt/wp-cli" do + owner "root" + group "root" + mode "755" +end + +remote_file "/opt/wp-cli/wp" do + source "https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar" + owner "root" + group "root" + mode "755" +end