You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. Debian-8 in digital-ocean comes without sudo. so i have small error while creating Debian8 VM.
Bringing machine 'default' up with 'digital_ocean' provider...
==> default: Using existing SSH key: Vagrant
==> default: Creating a new droplet...
==> default: Assigned IP address: ***********
==> default: Installing rsync to the VM...
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
apt-get -y update
Stdout from the command:
Stderr from the command:
bash: sudo: command not found
I get the same error. The workaround listed above did not work for me.
Please help, it seems it's currently not possible to use Debian with vagrant-digitalocean.
Various issues (as far as I can see devopsgroup-io#203 and devopsgroup-io#109) report a missing sudo on
DigitalOceans debian8 images. We're providing a late installation on vagrant up
which should fix these issues.
Hello. Debian-8 in digital-ocean comes without sudo. so i have small error while creating Debian8 VM.
Bringing machine 'default' up with 'digital_ocean' provider...
==> default: Using existing SSH key: Vagrant
==> default: Creating a new droplet...
==> default: Assigned IP address: ***********
==> default: Installing rsync to the VM...
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
apt-get -y update
Stdout from the command:
Stderr from the command:
bash: sudo: command not found
Vagrant.configure('2') do |config|
config.vm.provider :digital_ocean do |provider, override|
override.ssh.private_key_path = '~/.ssh/id_rsa'
override.vm.box = 'digital_ocean'
provider.token = '******'
provider.image = 'debian-8-x32'
provider.region = 'fra1'
provider.size = '512mb'
end
The text was updated successfully, but these errors were encountered: