Merge pull request #19 from CorbanR/master

updating group_vars with new wordpress version 3.6 and Sha256sum check.
pull/63/head
Tim Gerla 11 years ago
commit 0ce1096efe
  1. 3
      wordpress-nginx/group_vars/all
  2. 1
      wordpress-nginx/roles/wordpress/tasks/main.yml

@ -1,6 +1,7 @@
---
# Which version of Wordpress to deploy
wp_version: 3.5.2
wp_version: 3.6
wp_sha256sum: cf3dac69cd1810d8f4880b2c982fee869a0c56e1c4f793bbfc6d7021fd6da97c
# These are the Wordpress database settings
wp_db_name: wordpress

@ -1,6 +1,7 @@
---
- name: Download Wordpress
get_url: url=http://wordpress.org/wordpress-{{ wp_version }}.tar.gz dest=/srv/wordpress-{{ wp_version }}.tar.gz
sha256sum="{{ wp_sha256sum }}"
- name: Extract archive
command: chdir=/srv/ /bin/tar xvf wordpress-{{ wp_version }}.tar.gz creates=/srv/wordpress