provizioning 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,11 +20,20 @@ cd /etc/apt
20
20
 
21
21
  # Sources depending on Ubuntu Version
22
22
  var=`cat /etc/issue`
23
+
24
+ if [ "$var" == "Ubuntu 10.04 \n \l" ]
25
+ then
26
+ wget https://raw.github.com/seasonlabs/provizioning/master/bootstrap/lucid.sources.list -O sources.list
27
+ fi
28
+
23
29
  if [ "$var" == "Ubuntu 11.04 \n \l" ]
24
30
  then
25
31
  wget https://raw.github.com/seasonlabs/provizioning/master/bootstrap/natty.sources.list -O sources.list
26
- else
27
- wget https://raw.github.com/seasonlabs/provizioning/master/bootstrap/lucid.sources.list -O sources.list
32
+ fi
33
+
34
+ if [ "$var" == "Ubuntu 12.04 \n \l" ]
35
+ then
36
+ wget https://raw.github.com/seasonlabs/provizioning/master/bootstrap/precise.sources.list -O sources.list
28
37
  fi
29
38
 
30
39
  export DEBIAN_FRONTEND=noninteractive
@@ -0,0 +1,12 @@
1
+ #############################################################
2
+ ################### OFFICIAL UBUNTU REPOS ###################
3
+ #############################################################
4
+
5
+ ###### Ubuntu Main Repos
6
+ deb http://archive.ubuntu.com/ubuntu/ precise main restricted universe multiverse
7
+
8
+ ###### Ubuntu Update Repos
9
+ deb http://archive.ubuntu.com/ubuntu/ precise-security main restricted universe multiverse
10
+ deb http://archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiverse
11
+ deb http://archive.ubuntu.com/ubuntu/ precise-proposed main restricted universe multiverse
12
+ deb http://archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse
@@ -1,3 +1,3 @@
1
1
  module Provizioning
2
- VERSION = "0.9.0"
2
+ VERSION = "0.9.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: provizioning
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-05 00:00:00.000000000 Z
12
+ date: 2012-08-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano
@@ -57,6 +57,7 @@ files:
57
57
  - bootstrap/bootstrap.sh
58
58
  - bootstrap/lucid.sources.list
59
59
  - bootstrap/natty.sources.list
60
+ - bootstrap/precise.sources.list
60
61
  - lib/provizioning/puppet.rb
61
62
  - lib/provizioning/version.rb
62
63
  - provizioning.gemspec