Skip to content

Instantly share code, notes, and snippets.

@crigor
Created June 6, 2013 15:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crigor/5722270 to your computer and use it in GitHub Desktop.
Save crigor/5722270 to your computer and use it in GitHub Desktop.
output of vagrant up using the ansible provisioner
$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
[default] Importing base box 'vagrant-debian-wheezy'...
[default] Matching MAC address for NAT networking...
[default] Setting the name of the VM...
[default] Clearing any previously set forwarded ports...
[default] Creating shared folders metadata...
[default] Clearing any previously set network interfaces...
[default] Preparing network interfaces based on configuration...
[default] Forwarding ports...
[default] -- 22 => 2222 (adapter 1)
[default] -- 80 => 8085 (adapter 1)
[default] Booting VM...
[default] Waiting for VM to boot. This can take a few minutes.
[default] VM booted and ready for use!
[default] Configuring and enabling network interfaces...
[default] Mounting shared folders...
[default] -- /vagrant
[default] Running provisioner: ansible...
PLAY [vagrant] *********************
GATHERING FACTS *********************
ok: [192.168.122.10]
TASK: [update aptitude] *********************
changed: [192.168.122.10]
TASK: [LC_ALL] *********************
changed: [192.168.122.10]
TASK: [postgresql package] *********************
changed: [192.168.122.10]
TASK: [pg_hba.conf] *********************
changed: [192.168.122.10]
TASK: [postgresql service] *********************
changed: [192.168.122.10]
TASK: [nginx is installed] *********************
changed: [192.168.122.10]
TASK: [service name=nginx state=started] *********************
changed: [192.168.122.10]
TASK: [nginx config] *********************
changed: [192.168.122.10]
TASK: [monit is installed] *********************
changed: [192.168.122.10]
TASK: [monit config] *********************
changed: [192.168.122.10]
TASK: [file dest=/data/foo/shared/log owner=vagrant group=vagrant state=directory] *********************
changed: [192.168.122.10]
TASK: [file dest=/data/foo/shared/config owner=vagrant group=vagrant state=directory] *********************
changed: [192.168.122.10]
TASK: [file dest=/data/foo owner=vagrant group=vagrant state=directory recurse=true] *********************
changed: [192.168.122.10]
TASK: [file dest=/var/run/foo owner=vagrant group=vagrant state=directory] *********************
changed: [192.168.122.10]
TASK: [link to /vagrant] *********************
changed: [192.168.122.10]
TASK: [monit config for unicorn] *********************
changed: [192.168.122.10]
TASK: [start script for unicorn] *********************
changed: [192.168.122.10]
TASK: [stop script for unicorn] *********************
changed: [192.168.122.10]
TASK: [unicorn.rb for the app] *********************
changed: [192.168.122.10]
TASK: [/etc/nginx/servers] *********************
changed: [192.168.122.10]
TASK: [nginx config for the app] *********************
changed: [192.168.122.10]
TASK: [package needed by the pg gem] *********************
changed: [192.168.122.10]
TASK: [database.yml for the app] *********************
ok: [192.168.122.10]
TASK: [install bundler] *********************
changed: [192.168.122.10]
TASK: [bundle gems on the app] *********************
changed: [192.168.122.10]
TASK: [create db and run migrations] *********************
changed: [192.168.122.10]
NOTIFIED: [reload nginx] *********************
changed: [192.168.122.10]
NOTIFIED: [restart monit] *********************
changed: [192.168.122.10]
NOTIFIED: [reload postgresql] *********************
changed: [192.168.122.10]
PLAY RECAP *********************
192.168.122.10 : ok=30 changed=28 unreachable=0 failed=0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment