尝试为我的 Vagrant 提供 Ansible

Trying to provision my Vagrant with Ansible

我正在尝试为虚拟机提供 Ansible 剧本。

根据文档,我得到了这个简单的 Vagrant 文件:

Vagrant.configure("2") do |config|
  config.vm.box = "ubuntu/xenial64"
  config.vm.network "private_network", ip: "192.168.50.5"

  config.vm.provision "ansible" do |ansible|
    ansible.verbose = "vvv"
    ansible.playbook = "playbook.yml"
  end
end

如您所见,我正在尝试从 playbook.yml 文件配置 xenial64 机器 (Ubuntu 16.04)。

当我启动 vagrant provision 时,这是我得到的:

$ vagrant provision                                                                   
==> default: Running provisioner: ansible...
    default: Running ansible-playbook...
PYTHONUNBUFFERED=1 ANSIBLE_FORCE_COLOR=true ANSIBLE_HOST_KEY_CHECKING=false ANSIBLE_SSH_ARGS='-o UserKnownHostsFile=/dev/null -o IdentitiesOnly=yes -o ControlMaster=auto -o ControlPersist=60s' ansible-playbook --connection=ssh --timeout=30 --limit="default" --inventory-file=/home/mmarteau/Code/ansible-arc/.vagrant/provisioners/ansible/inventory -vvv playbook.yml
Using /etc/ansible/ansible.cfg as config file
statically included: /home/mmarteau/Code/ansible-arc/roles/user/tasks/ho-my-zsh.yml
statically included: /home/mmarteau/Code/ansible-arc/roles/webserver/tasks/nginx.yml
statically included: /home/mmarteau/Code/ansible-arc/roles/webserver/tasks/php.yml
statically included: /etc/ansible/roles/geerlingguy.composer/tasks/global-require.yml
statically included: /etc/ansible/roles/geerlingguy.nodejs/tasks/setup-RedHat.yml
statically included: /etc/ansible/roles/geerlingguy.nodejs/tasks/setup-Debian.yml

PLAYBOOK: playbook.yml *********************************************************
1 plays in playbook.yml

PLAY RECAP *********************************************************************

所以我的文件似乎被读取了,因为我从角色中得到一些 statically included 到我的 playbook.yml 文件中。

但是,脚本很快就停止了,我没有任何信息可以调试或看到任何错误。

如何调试这个进程?

编辑:更多信息

这是我的 playbook.yml 文件:

---
- name: Installation du serveur

  # hosts: web
  hosts: test
  vars: 
    user: mmart
    apps: 
        dev:
            branch: development
            domain: admin.test.dev
        master:
            branch: master
            domain: admin.test.fr
    bitbucket_repository: git@bitbucket.org:Test/test.git
    composer_home_path: '/home/mmart/.composer'
    composer_home_owner: mmart
    composer_home_group: mmart
    zsh_theme: agnoster
    environment_file: arc-parameters.yml
    ssh_agent_config: arc-ssh-config

  roles: 
    - apt
    - user
    - webserver
    - geerlingguy.composer
    - geerlingguy.nodejs
    - deploy
    - deployer
...

这是我的主机文件:

[web]
XX.XX.XXX.XXX ansible_ssh_private_key_file=/somekey.pem ansible_become=true ansible_user=ubuntu

[test]

这是 .vagrant/provisioners/ansible/inventory/vagrant_ansible_inventory 中的 vagrant 生成的主机文件:

# Generated by Vagrant

default ansible_ssh_host=127.0.0.1 ansible_ssh_port=2222 ansible_ssh_user='ubuntu' ansible_ssh_private_key_file='/home/mmart/Code/ansible-test/.vagrant/machines/default/virtualbox/private_key'

这是正确的吗? ansible_ssh_user 不应该设置为 vagrant 吗?

在您的剧本中使用 default 作为主机,因为默认情况下 vagrant 只会为该特定主机创建一个清单元素:

---
- name: Installation du serveur

  hosts: default
  (...)