Ansible:如何将变量添加到"命令"或者" shell"

时间:2017-01-10 10:59:37

标签: ansible ansible-playbook ansible-2.x

是否可以在"命令"上使用变量?或者" shell"模块? 我有下一个代码,我想使用变量文件来提供一些配置:

我想从我的变量文件中读取Hadoop版本。在ansible的其他模块上,我可以使用{{ansible_version}},但是使用命令或shell它不起作用。

- name: start ZooKeeper HA
  command: hadoop-2.7.1/bin/hdfs zkfc -formatZK -nonInteractive

- name: start zkfc
  shell: hadoop-2.7.1/sbin/hadoop-daemon.sh start zkfc

我想转换到下一个:

- name: Iniciar zkfc
  command: {{ hadoop_version }}/sbin/hadoop-daemon.sh start zkfc

因为如果我使用这种语法运行它会抛出下一个错误:

- name: inicializar estado ZooKeeper HA
  command: {{hadoop_version}}/bin/hdfs zkfc -formatZK -nonInteractive
                             ^ here
We could be wrong, but this one looks like it might be an issue with
missing quotes.  Always quote template expression brackets when they
start a value. For instance:

    with_items:
      - {{ foo }}

Should be written as:

    with_items:
      - "{{ foo }}"

我尝试过使用,但同样的问题:

- name: Iniciar zkfc
  command: "{{ hadoop_version }}"/sbin/hadoop-daemon.sh start zkfc

正确的语法是什么?

3 个答案:

答案 0 :(得分:15)

引用command参数中的完整字符串:

- name: Iniciar zkfc
  command: "{{ hadoop_version }}/sbin/hadoop-daemon.sh start zkfc"

答案 1 :(得分:4)

语法错误是因为您使用{启动了一个值。如果你用一个像这样的变量开始一个值:

command: {{ my_var }}

然后你必须引用整个行:

command: "{{ my_var }}"

这是因为解析器无法区分YAML的字典语法和变量插值。

答案 2 :(得分:2)

我已完成以下步骤来替换Ansible Shell模块中的清单主机名

- name: 'Task-10 Modif the splunk input.conf file with Actual hostname'

  become: yes
  become_method: sudo
  become_user: root
  shell: |
    /splunk/splunkforwarder/bin/splunk enable boot-start --accept-license --answer-yes --no-prompt -user splunk
    declare wfqdn 
    wfqdn=$(uname -n)
    sed -i "s/$wfqdn/"{{ inventory_hostname }}"/g" /splunk/splunkforwarder/etc/system/local/inputs.conf
  tags:
    - always

主要玩法是:

sed -i "s/$wfqdn/"{{ inventory_hostname }}"/g" /splunk/splunkforwarder/etc/system/local/inputs.conf