diff options
Diffstat (limited to 'tests/example-provider/vagrant')
-rw-r--r-- | tests/example-provider/vagrant/initialize.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/example-provider/vagrant/initialize.sh b/tests/example-provider/vagrant/initialize.sh new file mode 100644 index 00000000..5f87af6c --- /dev/null +++ b/tests/example-provider/vagrant/initialize.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +set -euxo pipefail + +echo -e "deb http://deb.debian.org/debian/ jessie main \ndeb http://security.debian.org/ jessie/updates main" > /etc/apt/sources.list +apt-get update +apt-get install -y --no-install-recommends puppet +echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen +echo "LANG=en_US.UTF-8" > /etc/default/locale +echo 'LC_ALL=en_US.UTF-8' >> /etc/environment +locale-gen +update-locale |