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
$ PUPPET=1 make trusty
$ cd some_other_dir
$ cat Vagrantfile
Vagrant.configure("2") do|config|
config.vm.box = "trusty64"
config.vm.provider :lxc do|lxc|
lxc.customize 'aa_allow_incomplete','1'
end
end
$ vagrant add box --name trusty64 ~/vagrant-lxc-base-boxes/output/2014-12-30/vagrant-lxc-trusty-amd64.box
$ vagrant up --provider=lxc
Bringing machine 'default' up with 'lxc' provider...
==> default: Importing base box 'trusty64'...
==> default: Setting up mount entries for shared folders...
default: /vagrant => /home/jake/repos/c4puppet
Warning! The LXC provider doesn't support the :owner parameter for syncedfolders. It will be silently ignored. default: /tmp/vagrant-puppet-2/manifests => /home/jake/repos/c4puppet/manifestsWarning! The LXC provider doesn't support the :owner parameter for synced
folders. It will be silently ignored.
default: /tmp/vagrant-puppet-2/modules-0 => /home/jake/repos/c4puppet/modules
==> default: Starting container...
==> default: Waiting for machine to boot. This may take a few minutes...
default: SSH address: 10.0.3.178:22
default: SSH username: vagrant
default: SSH auth method: private key
default: Warning: Connection refused. Retrying...
default: Warning: Connection refused. Retrying...
default: Warning: Connection refused. Retrying...
It appears that openssh-server is not installed. Installing it seems to resolve the issue:
It appears that
openssh-server
is not installed. Installing it seems to resolve the issue:The text was updated successfully, but these errors were encountered: