Home
last modified time | relevance | path

Searched refs:existing_matches (Results 1 – 3 of 3) sorted by relevance

/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/cloud/amazon/
H A Dec2_instance.py1487 def handle_existing(existing_matches, changed, ec2, state): argument
1497 changes = diff_instance_and_params(existing_matches[0], module.params)
1502 changed |= change_network_attachments(existing_matches[0], module.params, ec2)
1512 def ensure_present(existing_matches, changed, ec2, state): argument
1513 if len(existing_matches):
1515 handle_existing(existing_matches, changed, ec2, state)
1681 existing_matches = find_instances(ec2, filters=module.params.get('filters'))
1684 if state not in ('terminated', 'absent') and existing_matches:
1685 for match in existing_matches:
1695 ensure_present(existing_matches=existing_matches, changed=changed, ec2=ec2, state=state)
[all …]
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/aws/plugins/modules/
H A Dec2_instance.py1598 def handle_existing(existing_matches, changed, ec2, state): argument
1608 changes = diff_instance_and_params(existing_matches[0], module.params, ec2)
1617 changed |= change_network_attachments(existing_matches[0], module.params, ec2)
1627 def ensure_present(existing_matches, changed, ec2, state): argument
1628 if len(existing_matches):
1630 handle_existing(existing_matches, changed, ec2, state)
1801 existing_matches = find_instances(ec2, filters=module.params.get('filters'))
1804 if state not in ('terminated', 'absent') and existing_matches:
1805 for match in existing_matches:
1815 ensure_present(existing_matches=existing_matches, changed=changed, ec2=ec2, state=state)
[all …]
/dports/security/py-certbot-apache/certbot-apache-1.22.0/certbot_apache/_internal/
H A Dparser.py807 existing_matches = self.parser_paths[os.path.dirname(filepath)]
808 if "*" in existing_matches: