incorporate ports.ubuntu.com stuff

ubuntu/precise
LaMont Jones 20 years ago
parent 5c05dc4b87
commit 9fc52e588f

6
debian/changelog vendored

@ -1,3 +1,9 @@
livecd-rootfs (0.20) breezy; urgency=low
* incorporate ports.ubuntu.com repositories
-- LaMont Jones <lamont@ubuntu.com> Thu, 5 May 2005 16:35:16 -0600
livecd-rootfs (0.19) hoary; urgency=low livecd-rootfs (0.19) hoary; urgency=low
* Add 'base' target * Add 'base' target

@ -45,12 +45,22 @@ fi
umask 022 umask 022
export TTY=unknown export TTY=unknown
export TERM=vt100 export TERM=vt100
case $(dpkg --print-architecture) in
i386|powerpc|amd64)
USERMIRROR=http://archive.ubuntu.com/ubuntu
SECMIRROR=http://security.ubuntu.com/ubuntu
;;
*)
USERMIRROR=http://ports.ubuntu.com/ubuntu-ports
SECMIRROR=http://ports.ubuntu.com/ubuntu-ports
;;
esac
case $(hostname --fqdn) in case $(hostname --fqdn) in
*.mmjgroup.com) MIRROR=http://ia/ubuntu;; *.mmjgroup.com) MIRROR=http://ia/ubuntu;;
*.ubuntu.com) MIRROR=http://jackass.ubuntu.com;; *.ubuntu.com) MIRROR=http://jackass.ubuntu.com;;
*.warthogs.hbd.com) MIRROR=http://jackass.ubuntu.com;; *.warthogs.hbd.com) MIRROR=http://jackass.ubuntu.com;;
*.buildd) MIRROR=http://jackass.ubuntu.com;; *.buildd) MIRROR=http://jackass.ubuntu.com;;
*) MIRROR=http://archive.ubuntu.com/ubuntu;; *) MIRROR=${USERMIRROR};;
esac esac
# How much space do we leave on the filesystem for the user? # How much space do we leave on the filesystem for the user?
@ -197,8 +207,8 @@ link_in_boot = no
# And make this look more pristene # And make this look more pristene
cleanup cleanup
cat << @@EOF > ${ROOT}etc/apt/sources.list cat << @@EOF > ${ROOT}etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu $STE main restricted deb ${USERMIRROR} $STE main restricted
deb-src http://archive.ubuntu.com/ubuntu $STE main restricted deb-src ${USERMIRROR} $STE main restricted
## Uncomment the following two lines to add software from the 'universe' ## Uncomment the following two lines to add software from the 'universe'
## repository. ## repository.
@ -207,11 +217,11 @@ deb-src http://archive.ubuntu.com/ubuntu $STE main restricted
## your rights to use the software. Also, please note that software in ## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security ## universe WILL NOT receive any review or updates from the Ubuntu security
## team. ## team.
# deb http://archive.ubuntu.com/ubuntu $STE universe # deb ${USERMIRROR} $STE universe
# deb-src http://archive.ubuntu.com/ubuntu $STE universe # deb-src ${USERMIRROR} $STE universe
deb http://security.ubuntu.com/ubuntu ${STE}-security main restricted deb ${SECMIRROR} ${STE}-security main restricted
deb-src http://security.ubuntu.com/ubuntu ${STE}-security main restricted deb-src ${SECMIRROR} ${STE}-security main restricted
@@EOF @@EOF
mv ${ROOT}etc/apt/trusted.gpg.$$ ${ROOT}etc/apt/trusted.gpg mv ${ROOT}etc/apt/trusted.gpg.$$ ${ROOT}etc/apt/trusted.gpg

Loading…
Cancel
Save