Sha256: 8d4fe618234f206605184a20869a899eedb4f18f7195076f9597f772a2dc008c

Contents?: true

Size: 816 Bytes

Versions: 1

Compression:

Stored size: 816 Bytes

Contents

namespace "wp-capistrano" do
  desc 'Install wordpress'
  task :install_wordpress do
    on roles(:app), filter: :no_release do
          execute "rm #{shared_path}/wp-config.php"
          execute "php #{fetch(:tmp_dir)}/wp-cli.phar config create --dbname=#{fetch(:wp_db_name)} --dbuser=#{fetch(:wp_db_user)} --dbpass=#{fetch(:wp_db_password)} --dbhost='#{fetch(:wp_db_host)}'  --locale=#{fetch(:wp_locale)} --path=#{release_path}"
          execute "cp #{release_path}/wp-config.php #{shared_path}/"
          execute "php #{fetch(:tmp_dir)}/wp-cli.phar core install --url='#{fetch(:wp_url)}' --title='#{fetch(:wp_title)}' --admin_user='#{fetch(:wp_admin_user)}' --admin_password='#{fetch(:wp_admin_password)}' --admin_email='#{fetch(:wp_admin_email)}' --skip-email --path=#{release_path}"
        end
    end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wp-capistrano3-0.0.19 lib/capistrano/tasks/install_wordpress.rake