mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-24 08:45:13 +00:00
vagrant: fix issue in stretch VM hanging at grub installation
This commit is contained in:
parent
e01039bebf
commit
e91d9cd17e
1 changed files with 4 additions and 3 deletions
7
Vagrantfile
vendored
7
Vagrantfile
vendored
|
@ -9,9 +9,10 @@ $wmem = $xdistn * 256 # give the VM additional memory for workers [MB]
|
|||
|
||||
def packages_debianoid(user)
|
||||
return <<-EOF
|
||||
apt update
|
||||
# install all the (security and other) updates
|
||||
apt dist-upgrade -y
|
||||
# this is to avoid grub asking about which device it should install to:
|
||||
echo "set grub-pc/install_devices /dev/sda" | debconf-communicate
|
||||
apt-get -y -qq update
|
||||
apt-get -y -qq dist-upgrade
|
||||
# for building borgbackup and dependencies:
|
||||
apt install -y libssl-dev libacl1-dev liblz4-dev libzstd-dev libfuse-dev fuse pkg-config
|
||||
usermod -a -G fuse #{user}
|
||||
|
|
Loading…
Reference in a new issue