Server IP : 85.214.239.14 / Your IP : 18.219.255.63 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/root/lib/python3/dist-packages/ansible_collections/ansible/utils/plugins/test/ |
Upload File : |
# -*- coding: utf-8 -*- # Copyright 2021 Red Hat # GNU General Public License v3.0+ # (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) """ Test plugin file for netaddr tests: subnet_of """ from __future__ import absolute_import, division, print_function from ansible_collections.ansible.utils.plugins.plugin_utils.base.ipaddress_utils import ( _is_subnet_of, _need_ipaddress, _validate_args, ip_network, ) __metaclass__ = type DOCUMENTATION = """ name: subnet_of author: Priyam Sahoo (@priyamsahoo) version_added: "2.2.0" short_description: Test if a network is a subnet of another network description: - This plugin checks if the first network is a subnet of the second network amongst the provided network addresses options: network_a: description: - A string that represents the first network address - 'For example: C(10.1.1.0/24)' type: str required: True network_b: description: - A string that represents the second network address - 'For example: C(10.0.0.0/8)' type: str required: True notes: """ EXAMPLES = r""" - name: Check if 10.1.1.0/24 is a subnet of 10.0.0.0/8 ansible.builtin.set_fact: data: "{{ '10.1.1.0/24' is ansible.utils.subnet_of '10.0.0.0/8' }}" # TASK [Check if 10.1.1.0/24 is a subnet of 10.0.0.0/8] ************************** # ok: [localhost] => { # "ansible_facts": { # "data": true # }, # "changed": false # } - name: Check if 192.168.1.0/24 is not a subnet of 10.0.0.0/8 ansible.builtin.set_fact: data: "{{ '192.168.1.0/24' is not ansible.utils.subnet_of '10.0.0.0/8' }}" # TASK [Check if 192.168.1.0/24 is not a subnet of 10.0.0.0/8] ******************* # ok: [localhost] => { # "ansible_facts": { # "data": true # }, # "changed": false # } """ RETURN = """ data: description: - If jinja test satisfies plugin expression C(true) - If jinja test does not satisfy plugin expression C(false) """ @_need_ipaddress def _subnet_of(network_a, network_b): """Test if a network is a subnet of another network""" params = {"network_a": network_a, "network_b": network_b} _validate_args("subnet_of", DOCUMENTATION, params) try: return _is_subnet_of(ip_network(network_a), ip_network(network_b)) except Exception: return False class TestModule(object): """network jinja test""" test_map = {"subnet_of": _subnet_of} def tests(self): return self.test_map