Created
June 5, 2013 05:55
-
-
Save crigor/5711873 to your computer and use it in GitHub Desktop.
vagrant up output when using the ansible provisioner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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] Fixed port collision for 22 => 2222. Now on port 2200. | |
[default] Creating shared folders metadata... | |
[default] Clearing any previously set network interfaces... | |
[default] Preparing network interfaces based on configuration... | |
[default] Forwarding ports... | |
[default] -- 22 => 2200 (adapter 1) | |
[default] -- 80 => 8080 (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: [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] ********************* | |
changed: [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=29 changed=28 unreachable=0 failed=0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment