From 8160dec7936b8ebca386f333e5673ffc4de0709c Mon Sep 17 00:00:00 2001 From: Bryan Date: Wed, 10 Feb 2016 22:03:56 -0800 Subject: [PATCH] add universe component to repo update script mirroring all open source components makes the mirror more useful --- assets/update_mirror.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/update_mirror.sh b/assets/update_mirror.sh index 4018e4c..accdc45 100755 --- a/assets/update_mirror.sh +++ b/assets/update_mirror.sh @@ -4,15 +4,15 @@ set -e # Automate the initial creation and update of an Ubuntu package mirror in aptly # The variables (as set below) will create a mirror of the Ubuntu Trusty repo -# with just the main component, you can add other components like restricted -# universe etc by adding to the array (separated by spaces). +# with the main & universe components, you can add other components like restricted +# multiverse etc by adding to the array (separated by spaces). # For more detail about each of the variables below refer to: # https://help.ubuntu.com/community/Repositories/CommandLine UBUNTU_RELEASE=trusty UPSTREAM_URL="http://archive.ubuntu.com/ubuntu/" -COMPONENTS=( main ) +COMPONENTS=( main universe ) REPOS=( ${UBUNTU_RELEASE} ${UBUNTU_RELEASE}-updates ${UBUNTU_RELEASE}-security ) # Create repository mirrors if they don't exist