Ansible Module command: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 30: Line 30:


<syntaxhighlight lang='yaml'>
<syntaxhighlight lang='yaml'>
- name: Read required JDK version
- name: Read requested Java version
   command: "sh -c \"finger `whoami` | awk -F: '{ print $3 }' | head -n1 | sed 's/^ //'\""
   command: "cat {{ansible_env.HOME}}/config.txt | grep \"^JAVA_VERSION\" | sed -e 's/.*=//'"
   register: name_cmd
   register: java_version
  changed_when: false
  when: name is not defined
</syntaxhighlight>
</syntaxhighlight>

Revision as of 02:38, 30 December 2020

External

Internal

Overview

The command module takes the command name followed by a list of space-delimited arguments.

A command will NOT be interpreted by a shell, so variables like $HOME and operations like "<", ">", "|", ";" and "&" will not work. Use the shelll module for that.

- name: A command example
  command: some-command arg1 arg2
  become: true
  become_user: root
  args:
    chdir: /somedir/

"become" and "become_user" are optional. Also see:

Ansible Privilege Escalation

Registering Variables as Results of Command Execution

This sets a variable:

- name: Read requested Java version
  command: "cat {{ansible_env.HOME}}/config.txt | grep \"^JAVA_VERSION\" | sed -e 's/.*=//'"
  register: java_version