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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…