Skip to content

Instantly share code, notes, and snippets.

@kleo
Created December 10, 2019 08:43
Show Gist options
  • Select an option

  • Save kleo/c50fe3cb2279b35e32cdb533874f7e61 to your computer and use it in GitHub Desktop.

Select an option

Save kleo/c50fe3cb2279b35e32cdb533874f7e61 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "Provisioning box"
export DEBIAN_FRONTEND=noninteractive
echo "Setting up apt local mirror"
rm -rf /etc/apt/sources.list
rm -rf /etc/apt/sources.list.d
cat <<EOT >> /etc/apt/sources.list
deb [ arch=amd64 ] http://mirror.springvalley.tech/ubuntu/ bionic main restricted universe multiverse
deb [ arch=amd64 ] http://mirror.springvalley.tech/ubuntu/ bionic-security main restricted universe multiverse
deb [ arch=amd64 ] http://mirror.springvalley.tech/ubuntu/ bionic-updates main restricted universe multiverse
deb [ arch=amd64 ] http://mirror.springvalley.tech/ubuntu/ bionic-backports main restricted universe multiverse
EOT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment