public
Description: master respository for deprec - deployment recipes for capistrano
Homepage: http://www.deprec.org/
Clone URL: git://github.com/mbailey/deprec.git
Updates to apt-mirror setup
mbailey (author)
Mon Sep 08 19:16:11 -0700 2008
commit  c1137ac58d70072ea4c441651cf05b0723de1b69
tree    69b03fa0cf0cd99eb2c98015d9ef2b96f1b7919d
parent  06845d6a107a42f72932705423109b8e0c7c21b1
...
32
33
34
35
 
36
37
38
...
32
33
34
 
35
36
37
38
0
@@ -32,7 +32,7 @@ require "#{File.dirname(__FILE__)}/recipes/sphinx"
0
 require "#{File.dirname(__FILE__)}/recipes/logrotate"
0
 require "#{File.dirname(__FILE__)}/recipes/utils"
0
 require "#{File.dirname(__FILE__)}/recipes/git"
0
-require "#{File.dirname(__FILE__)}/recipes/apt"
0
+require "#{File.dirname(__FILE__)}/recipes/apt_mirror"
0
 # require "#{File.dirname(__FILE__)}/recipes/pdns"
0
 require "#{File.dirname(__FILE__)}/recipes/gitosis"
0
 require "#{File.dirname(__FILE__)}/recipes/ar_sendmail"
...
6
7
8
9
10
11
12
13
14
 
 
 
 
 
 
 
 
 
15
...
6
7
8
 
 
 
 
 
 
9
10
11
12
13
14
15
16
17
18
0
@@ -6,10 +6,13 @@
0
 #
0
 # gutsy
0
 #
0
-deb    http://apt/ubuntu gutsy main restricted universe multiverse
0
-deb-src  http://<%= apt_mirror_hostname %>/ubuntu gutsy main restricted universe multiverse
0
-deb    http://<%= apt_mirror_hostname %>/ubuntu gutsy-updates main restricted universe multiverse
0
-deb-src  http://<%= apt_mirror_hostname %>/ubuntu gutsy-updates main restricted universe multiverse
0
-deb    http://<%= apt_mirror_hostname %>/ubuntu gutsy-security main restricted universe multiverse
0
-deb-src  http://<%= apt_mirror_hostname %>/ubuntu gutsy-security main restricted universe multiverse
0
+deb    http://<%= apt_mirror_hostname %>/ubuntu gutsy main restricted universe multiverse
0
+deb     http://archive.ubuntu.com/ubuntu     gutsy-updates main restricted universe multiverse
0
+deb http://security.ubuntu.com/ubuntu gutsy-security main restricted universe
0
+
0
+deb-src http://archive.ubuntu.com/ubuntu     gutsy main restricted universe
0
+deb-src http://archive.ubuntu.com/ubuntu     gutsy-updates main restricted universe
0
+deb-src http://security.ubuntu.com/ubuntu gutsy-security main restricted universe
0
+
0
+
0
 
...
17
18
19
20
 
21
22
 
23
24
25
26
 
27
28
 
29
30
31
...
17
18
19
 
20
21
 
22
23
24
25
 
26
27
 
28
29
30
31
0
@@ -17,15 +17,15 @@ set _tilde 0
0
 <% Array(apt_releases_to_mirror).each do |release| %> 
0
 # <%= release %>
0
 deb http://archive.ubuntu.com/ubuntu <%= release %> main restricted universe multiverse
0
-deb http://archive.ubuntu.com/ubuntu <%= release %>-updates main restricted universe multiverse
0
+#deb http://archive.ubuntu.com/ubuntu <%= release %>-updates main restricted universe multiverse
0
 #deb http://archive.ubuntu.com/ubuntu <%= release %>-backports main restricted universe multiverse
0
-deb http://archive.ubuntu.com/ubuntu <%= release %>-security main restricted universe multiverse
0
+#deb http://archive.ubuntu.com/ubuntu <%= release %>-security main restricted universe multiverse
0
 #deb http://archive.ubuntu.com/ubuntu <%= release %>-proposed main restricted universe multiverse
0
 
0
 deb-src http://archive.ubuntu.com/ubuntu <%= release %> main restricted universe multiverse
0
-deb-src http://archive.ubuntu.com/ubuntu <%= release %>-updates main restricted universe multiverse
0
+#deb-src http://archive.ubuntu.com/ubuntu <%= release %>-updates main restricted universe multiverse
0
 #deb-src http://archive.ubuntu.com/ubuntu <%= release %>-backports main restricted universe multiverse
0
-deb-src http://archive.ubuntu.com/ubuntu <%= release %>-security main restricted universe multiverse
0
+#deb-src http://archive.ubuntu.com/ubuntu <%= release %>-security main restricted universe multiverse
0
 #deb-src http://archive.ubuntu.com/ubuntu <%= release %>-proposed main restricted universe multiverse
0
 <% end %>
0
 

Comments