Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Guest specific operations were attempted" on boot, Rsync not syncing either #192

Open
jrdnrc opened this issue May 21, 2015 · 3 comments
Open

Comments

@jrdnrc
Copy link

jrdnrc commented May 21, 2015

Hi,

I have a box hosted on digital ocean, and whenever I try to reboot it, I get the following error:

Bringing machine 'default' up with 'digital_ocean' provider...  
==> default: Powering on the droplet...  
Guest-specific operations were attempted on a machine that is not  
ready for guest communication. This should not happen and a bug  
should be reported.

Because of this, none of my changes are getting synced to the DO box, as the vagrant rsync command does not appear to be working either.

@RdeWilde
Copy link

On the readme vagrant rsync is not in the supported commands. Does this mean this is unsupported?

@seth-reeser
Copy link
Member

What is the OS of the droplet?

@timani
Copy link

timani commented Jan 24, 2016

I was able to get the same error

Droplet is powered down
$ vagrant status
Current machine states:

default                   off (digital_ocean)

off
Start the Droplet and trigger error
$ vagrant up
Bringing machine 'default' up with 'digital_ocean' provider...
==> default: Powering on the droplet...
Guest-specific operations were attempted on a machine that is not
ready for guest communication. This should not happen and a bug
should be reported.
The droplet is powered on despite the error
$ vagrant status
Current machine states:

default                   active (digital_ocean)

active
Vagrantfile

Here is a copy of the configuration.

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'
    override.vm.box_url = "https://github.com/smdahlen/vagrant-digitalocean/raw/master/box/digital_ocean.box"

    provider.token = ENV['DIGITAL_OCEAN_TOKEN']
    provider.image = 'ubuntu-14-04-x64'
    provider.region = 'sfo1'
    provider.size = '512mb'

  end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants