Skip to content

Commit

Permalink
Fix bug where we didn't apt-get update and had some key code commente…
Browse files Browse the repository at this point in the history
…d out for v2.1 release (see #6)
  • Loading branch information
ashley jones committed May 18, 2015
1 parent 789c13d commit d06acf4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# MultiPressDev v2.1
# MultiPressDev v2.1.1

## Overview

Expand Down Expand Up @@ -75,6 +75,9 @@ MySQL log in is:

## Release History

### 2.1.2 - 5.17.15
* Fix bug where we didn't apt-get update and had some key code commented out for v2.1 release (see #6)

### 2.1 - 5.16.15
* Move to one single tarball for feature #2
* Clean up install script
Expand Down
11 changes: 8 additions & 3 deletions provision/development_lamp.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#!/bin/bash
# MultiPressDev 2.0 - 5.8.15

echo "Running 'apt-get update' "
apt-get -qqy update
echo " Done!"
echo ''

echo "Installing LAMP "
export DEBIAN_FRONTEND=noninteractive
apt-get install -qqy apache2 mysql-server mysql-client php5 php5-mysql vim curl
Expand All @@ -22,9 +27,9 @@ echo " Done!"
echo ''

echo "Uncompressing all versions (takes *much *longer than sec, so hang on some more...)"
#tar -xzf /vagrant/provision/wordpress.all.tar.gz -C /vagrant/wordpress/
#mv /vagrant/wordpress/wordpress/* /vagrant/wordpress/.
#m -rf /vagrant/wordpress/wordpress
tar -xzf /vagrant/provision/wordpress.all.tar.gz -C /vagrant/wordpress/
mv /vagrant/wordpress/wordpress/* /vagrant/wordpress/.
rm -rf /vagrant/wordpress/wordpress
echo " Done!"
echo ''

Expand Down

0 comments on commit d06acf4

Please sign in to comment.