Vagrant

Vagrant from scratch to create your own local boxes and use them with Chef part 1

Vagrant from scratch to create your own local boxes – VirtualBox based – and use them with Chef part 1. I spin up a lot of virtualboxes, why?  I’m a combo Linux Admin & Oracle DBA & Developer with skills that I try to keep current across many technologies LAMP etc. too. I got tired …

Vagrant from scratch to create your own local boxes and use them with Chef part 1 Read More »

setup vagrant ssh user for a private box

Copied from puppetlabs/vagrant boxes /usr/sbin/groupadd vagrant /usr/sbin/useradd vagrant -g vagrant -G wheel echo “vagrant”|passwd –stdin vagrant echo “vagrant ALL=(ALL) NOPASSWD: ALL” >> /etc/sudoers.d/vagrant chmod 0440 /etc/sudoers.d/vagrant # Installing vagrant keys mkdir -pm 700 /home/vagrant/.ssh wget –no-check-certificate ‘https://raw.github.com/mitchellh/vagrant/master/keys/vagrant.pub’ -O /home/vagrant/.ssh/authorized_keys chmod 0600 /home/vagrant/.ssh/authorized_keys chown -R vagrant /home/vagrant/.ssh # Customize the message of the day echo ‘Welcome …

setup vagrant ssh user for a private box Read More »