blob: 0d595cbec8399b292978e9aab79125c89b35c2cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
# Exit the script if the executor is not root
if [[ $EUID -ne 0 ]]; then
cat <<END
you need to run this script as root
use :privileged => true in Vagrantfile
END
exit 0
fi
# Optimize APT sources for fastest mirror
perl -pi -e 's@^\s*(deb(\-src)?)\s+http://us.archive.*?\s+@\1 mirror://mirrors.ubuntu.com/mirrors.txt @g' /etc/apt/sources.list
# Update repositories
apt-get update
|