HEX
Server: LiteSpeed
System: Linux kapuas.iixcp.rumahweb.net 5.14.0-427.42.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Nov 1 14:58:02 EDT 2024 x86_64
User: mirz4654 (1666)
PHP: 8.1.33
Disabled: system,exec,escapeshellarg,escapeshellcmd,passthru,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,popen,pclose,dl,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setsid,posix_setuid,posix_setpgid,ini_alter,show_source,define_syslog_variables,symlink,syslog,openlog,openlog,closelog,ocinumcols,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dll,ftp,myshellexec,socket_bind,mail,posix_getwpuid
Upload Files
File: //lib/python3.9/site-packages/ansible/plugins/test/contains.yml
DOCUMENTATION:
  name: contains
  author: Ansible Core
  version_added: "2.4"
  short_description: does the list contain this element
  description:
    - Checks the supplied element against the input list to see if it exists within it.
  options:
    _input:
      description: List of elements to compare.
      type: list
      elements: raw
      required: True
    _contained:
      description: Element to test for.
      type: raw
      required: True
EXAMPLES: |
  # simple expression
  {{ listofthings is contains('this') }}

  # as a selector
  - action: module=doessomething
    when: lacp_groups|selectattr('interfaces', 'contains', 'em1')|first).master
    vars:
      lacp_groups:
        - master: lacp0
          network: 10.65.100.0/24
          gateway: 10.65.100.1
          dns4:
            - 10.65.100.10
            - 10.65.100.11
          interfaces:
            - em1
            - em2

        - master: lacp1
          network: 10.65.120.0/24
          gateway: 10.65.120.1
          dns4:
            - 10.65.100.10
            - 10.65.100.11
          interfaces:
              - em3
              - em4
RETURN:
  _value:
    description: Returns C(True) if the specified element is contained in the supplied sequence, C(False) otherwise.
    type: boolean