~mbruzek/charms/trusty/kubernetes-master/github-sync

« back to all changes in this revision

Viewing changes to hooks/install

  • Committer: Charles Butler
  • Date: 2015-02-18 22:58:19 UTC
  • Revision ID: charles.butler@ubuntu.com-20150218225819-tei5yvbs7evb6b3l
Updates to: Readme instructions
Alters hooks to correct a transient error in symlinking
Updates hooks with path.py goodness

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
set -ex
4
4
 
5
5
apt-get update -qq
6
 
apt-get install -y -q build-essential libssl-dev libffi-dev nginx python-dev python-pip wget
7
 
pip install gsutil
 
6
apt-get install -y -q \
 
7
    build-essential \
 
8
    git \
 
9
    libssl-dev \
 
10
    libffi-dev \
 
11
    nginx \
 
12
    python-dev \
 
13
    python-pip \
 
14
    wget
 
15
 
 
16
pip install gsutil path.py
8
17
 
9
18
VERSION=`config-get version`
10
19
ARCH=`dpkg --print-architecture`