Remove references to Ubuntu for requirements

Now I am doing most of the work on Debian boxes.

Signed-off-by: Alan Orth <alan.orth@gmail.com>
This commit is contained in:
2015-09-26 23:35:12 +03:00
parent f16b143eac
commit 295a9b4924
2 changed files with 1 additions and 105 deletions

View File

@ -5,7 +5,7 @@ Ansible playbook for base and initial configuration of web server hosting my per
## Assumptions
Before you can run this, a few things are assumed:
- You have a clean, minimal Ubuntu 14.04 host up and running
- You have a clean, minimal Debian 8 host up and running
- You have a user account with password-less SSH access to the machine
- You have sudo privileges on the remote host
- You have created a `hosts` file with something like:
@ -20,24 +20,6 @@ Once you've satisfied the the above assumptions, you can execute:
$ ansible-playbook web.yml -i hosts -K
## Testing in a VM (KVM)
A simple way to test locally in a virtual machine using libvirt + KVM:
$ sudo virt-install -n web01 -r 1024 --vcpus 2 \
-l http://ubuntu.mirror.ac.ke/ubuntu/dists/trusty/main/installer-amd64/ \
--os-type=linux --os-variant=ubuntusaucy \
--disk /var/lib/libvirt/images/web01.qcow2,device=disk,bus=virtio,format=qcow2,size=40 \
--vnc --cpuset=1,2 -x "auto=true priority=critical url=https://help.ubuntu.com/lts/installation-guide/example-preseed.txt"
This boots from a network Ubuntu mirror, then uses a preseed to automate the OS installation.
## Testing in Vagrant
Not as simple as on GNU/Linux with KVM, but still easy:
$ vagrant up
A new VirtualBox VM will come up with the IP `192.168.33.10`.
## License
Copyright (C) 2014 - 2015 Alan Orth