Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
759 views
in Technique[技术] by (71.8m points)

linux - "When" condition on Ansible playbook doesn't work as expected using operators

Below playbook use conditional statement with operators in Ansible. When I run the playbook, it never takes/validates the condition instead it consider the last set_fact value for "shmall".

---
- hosts: sandbox
  user: robo
  become: yes
  gather_facts: yes
  tasks:
  - debug: msg="{{ansible_memtotal_mb}}"

  - name: SHMALL value for MEM less than 16G
    set_fact:
       shmall: 3670016
       when: ansible_memtotal_mb|int <= 16384

  - name: SHMALL value for MEM is between 16G and 32G
    set_fact:
       shmall: 7340032
       when: ansible_memtotal_mb|int > 16384 and ansible_memtotal_mb|int <= 32768

  - debug: var=shmall

================================================================================
SUDO password:

PLAY [sandbox] *****************************************************************

TASK [setup] *******************************************************************
ok: [uslv-sapp-lnx11]

TASK [debug] *******************************************************************
ok: [uslv-sapp-lnx11] => {
    "msg": 7872
}

TASK [SHMALL value for MEM less than 16G] **************************************
ok: [uslv-sapp-lnx11]

TASK [SHMALL value for MEM is between 16G and 32G] *****************************
ok: [uslv-sapp-lnx11]

TASK [debug] *******************************************************************
ok: [uslv-sapp-lnx11] => {
    "shmall": 7340032
}

PLAY RECAP *********************************************************************
uslv-sapp-lnx11            : ok=5    changed=0    unreachable=0    failed=0
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Fix your indentation. when is not an argument of a set_fact action, but of a task:

- name: SHMALL value for MEM less than 16G
  set_fact:
    shmall: 3670016
  when: ansible_memtotal_mb|int <= 16384

- name: SHMALL value for MEM is between 16G and 32G
  set_fact:
    shmall: 7340032
  when: ansible_memtotal_mb|int > 16384 and ansible_memtotal_mb|int <= 32768

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...