Revision: | 1319 |
Committed: | 2010-05-09T02:41:41-07:00 (15 years, 1 month ago) by douglas |
Content type: | text/x-sh |
File size: | 259 byte(s) |
Log Message: | Mirrors. |
# | Content |
---|---|
1 | #!/bin/bash |
2 | # PXE Boot Debian |
3 | # |
4 | # Douglas Thrift |
5 | # |
6 | # $Id$ |
7 | |
8 | distribution=squeeze |
9 | architectures=(amd64 i386) |
10 | |
11 | case $HOSTNAME in |
12 | (*.ccs.ucsb.edu) |
13 | mirror=ftp://ftp.ucsb.edu/pub/mirrors/linux/debian |
14 | ;; |
15 | (*) |
16 | mirror=ftp://ftp.us.debian.org/debian |
17 | ;; |
18 | esac |
19 | |
20 | debian |
Name | Value |
---|---|
svn:keywords | Id |
svn:mime-type | text/x-sh |