diff --git a/apt-mirror.sh b/apt-mirror.sh new file mode 100644 index 0000000..1448fa3 --- /dev/null +++ b/apt-mirror.sh @@ -0,0 +1,16 @@ +#!/bin/sh -e + +UBUNTU_VERSION=$(lsb_release -cs) + +cat << EOF +deb http://apt.internal.cubetiqs.com/ubuntu ${UBUNTU_VERSION} main restricted +deb http://apt.internal.cubetiqs.com/ubuntu ${UBUNTU_VERSION}-updates main restricted +deb http://apt.internal.cubetiqs.com/ubuntu ${UBUNTU_VERSION} universe +deb http://apt.internal.cubetiqs.com/ubuntu ${UBUNTU_VERSION}-updates universe +deb http://apt.internal.cubetiqs.com/ubuntu ${UBUNTU_VERSION} multiverse +deb http://apt.internal.cubetiqs.com/ubuntu ${UBUNTU_VERSION}-updates multiverse +deb http://apt.internal.cubetiqs.com/ubuntu ${UBUNTU_VERSION}-backports main restricted universe multiverse +deb http://apt.internal.cubetiqs.com/ubuntu ${UBUNTU_VERSION}-security main restricted +deb http://apt.internal.cubetiqs.com/ubuntu ${UBUNTU_VERSION}-security universe +deb http://apt.internal.cubetiqs.com/ubuntu ${UBUNTU_VERSION}-security multiverse +EOF \ No newline at end of file