[ansible]コマンドの出力結果に特定の文字が含まれているかチェックする

2020/10/19に公開

よく使うので備忘録に

ansibleで実行したコマンドの出力結果(result.stdout)に、特定の文字(check_word)が含まれているかチェックする

---
- hosts: localhost
  tasks:
    - name: run "echo helloworld"
      command: echo helloworld
      register: result

    - name: check pattern1
      assert:
        that: check_word in result.stdout
      vars:
        check_word: "helloworld"

    - name: check pattern2
      assert:
        that: result.stdout.find(check_word) != -1
      vars:
        check_word: "helloworld"

assert_module 公式: https://docs.ansible.com/ansible/latest/collections/ansible/builtin/assert_module.html

Discussion