mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-11 23:03:39 -05:00
15 lines
337 B
Bash
15 lines
337 B
Bash
#!/bin/bash
|
|
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
set -e
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
apt-get update -q
|
|
apt-get install -qqy linux-headers-$(uname -r)
|
|
apt-get install -qqy virtualbox
|
|
apt-get install -qqy nfs-kernel-server
|
|
|
|
/bin/bash /vagrant/test/vagrant-spec/scripts/ubuntu-install-vagrant.sh
|
|
|
|
|