~mrazik/junk/autopilot-ppa-hook

« back to all changes in this revision

Viewing changes to D09add_ppa-autopilot-ppa

  • Committer: Martin Mrazik
  • Date: 2012-10-28 11:43:24 UTC
  • Revision ID: martin.mrazik@canonical.com-20121028114324-j14wb42ahr5tsl6m
initial rev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
set -e
 
4
 
 
5
. /etc/lsb-release
 
6
 
 
7
echo deb http://ppa.launchpad.net/autopilot/ppa/ubuntu $DISTRIB_CODENAME main >> /etc/apt/sources.list
 
8
 
 
9
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 14C5E025BA1954DA
 
10
apt-get update
 
11