host_vars não está funcionando no Ansible

0

Eu preciso usar host_vars no meu arquivo ansible para instalar um pacote no host remoto, estou tentando extrair uma variável com o nome package de host_vars dir no qual um arquivo ansi2 reside, que é o nome do host da máquina remota ....

---
 - hosts: all
   become: yes
   ignore_errors: yes
   gather_facts: no
   tasks:

   - name: install vim
     yum: name={{ package }} state=present

Estrutura Dir:

[root@ansi1 ansible]# pwd
/etc/ansible
[root@ansi1 ansible]#
[root@ansi1 ansible]# ls -l ansi2/host_vars/
total 4
-rw-r--r-- 1 root root 19 Jun 13 08:15 ansi2
[root@ansi1 ansible]#


[root@ansi1 ansible]# cat ansi2/host_vars/ansi2
---
package: "vim"

Erro:

TASK [install vim] *************************************************************
task path: /etc/ansible/service.yml:7
fatal: [ansi2.example.com]: FAILED! => {
    "failed": true,
    "msg": "the field 'args' has an invalid value, which appears to include a variable that is undefined. The error was: 'package' is undefined\n\nThe error appears to have been in '/etc/ansible/service.yml': line 7, column 6, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n   tasks:\n   - name: install vim\n     ^ here\n"
}
...ignoring
    
por Mohd 13.06.2017 / 04:51

2 respostas

1

No seu caso, eu suponho que o nível superior do diretório deve conter arquivos e diretórios da seguinte forma:

/etc
+-- ansible/
    +-- host_vars/
        +-- ansi2.example.com.yml
    +-- service.yml
    
por 13.06.2017 / 10:32
0

Qual poderia ser o problema no seu inventário, o que há nele?

O nome dado ao arquivo .yml deve ser o mesmo no arquivo hosts.

/ etc / ansible / ansi2 / hosts

[webdb]
127.0.0.1 ansible_user=root

/etc/ansible/ansi2/host_vars/webdb.yml

---
some_var: "temp"

/etc/ansible/service.yml

   ---
   - hosts: all
     become: yes
     ignore_errors: yes
     gather_facts: no
     tasks:

   - name: install vim
     yum: name={{ package }} state=present
    
por 01.10.2018 / 21:43

Tags