Skip to content

Commit

Permalink
Move from aptitude to apt-get, install git instead of git-core, use D…
Browse files Browse the repository at this point in the history
…ebian instead of Ubuntu
  • Loading branch information
Charl van Niekerk committed Jul 5, 2011
1 parent 3ef980e commit 87d5a1e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions deploy/ubuntu/install.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
# SwiftRiver Ubuntu Deployment Bash Script
# SwiftRiver Debian Deployment Bash Script
# ========================================
#
# This file is part of SwiftMeme.
Expand All @@ -19,11 +19,11 @@
# along with SwiftMeme. If not, see <http://www.gnu.org/licenses/>.

# Apply all system updates.
aptitude update
aptitude safe-upgrade -y
apt-get update
apt-get upgrade -y

# Install the necessary Ubuntu packages.
aptitude install -y apache2 libapache2-mod-wsgi memcached python-pip git-core
# Install the necessary Debian packages.
apt-get install -y apache2 libapache2-mod-wsgi memcached python-pip git

# Install the necessary Python packages.
pip install Flask oauth2 python-memcached
Expand Down

0 comments on commit 87d5a1e

Please sign in to comment.