netbox-plugin-dns 1.3.5__tar.gz → 1.3.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of netbox-plugin-dns might be problematic. Click here for more details.
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/PKG-INFO +1 -1
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/__init__.py +2 -2
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/management/commands/cleanup_database.py +2 -2
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/management/commands/rebuild_dnssync.py +1 -11
- netbox_plugin_dns-1.3.6/netbox_dns/migrations/0023_disable_ptr_false.py +27 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/utilities/ipam_dnssync.py +8 -9
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/views/record.py +5 -1
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_plugin_dns.egg-info/PKG-INFO +1 -1
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_plugin_dns.egg-info/SOURCES.txt +1 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/pyproject.toml +1 -1
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/LICENSE +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/README.md +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/field_serializers.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/nested_serializers.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/dnssec_policy.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/nameserver.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/prefix.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/record.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/record_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/registrar.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/registration_contact.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/view.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/zone.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/zone_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/urls.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/views.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/apps.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/choices/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/choices/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/choices/dnssec_policy.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/choices/record.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/choices/utilities.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/choices/zone.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/fields/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/fields/address.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/fields/choice_array.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/fields/ipam.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/fields/network.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/fields/rfc2317.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/fields/timeperiod.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/dnssec_policy.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/nameserver.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/record.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/record_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/registrar.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/registration_contact.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/view.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/zone.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/zone_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/forms/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/forms/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/forms/dnssec_policy.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/forms/nameserver.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/forms/record.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/forms/record_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/forms/registrar.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/forms/registration_contact.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/forms/view.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/forms/zone.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/forms/zone_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/enums.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filter_lookups.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/dnssec_policy.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/nameserver.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/record.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/record_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/registrar.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/registration_contact.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/view.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/zone.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/zone_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/schema.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/types.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/locale/de/LC_MESSAGES/django.mo +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/locale/en/LC_MESSAGES/django.mo +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/locale/fr/LC_MESSAGES/django.mo +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/management/commands/cleanup_rrset_ttl.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/management/commands/setup_dnssync.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0001_squashed_netbox_dns_0_15.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0001_squashed_netbox_dns_0_22.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0002_contact_description_registrar_description.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0003_default_view.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0004_create_and_assign_default_view.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0005_alter_zone_view_not_null.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0006_templating.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0007_alter_ordering_options.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0008_view_prefixes.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0009_rename_contact_registrationcontact.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0010_view_ip_address_filter.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0011_rename_related_fields.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0012_natural_ordering.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0013_zonetemplate_soa_mname_zonetemplate_soa_rname.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0014_alter_unique_constraints_lowercase.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0015_dnssec.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0016_dnssec_policy_status.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0017_dnssec_policy_zone_zone_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0018_zone_domain_status_zone_expiration_date.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0019_dnssecpolicy_parental_agents.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0020_netbox_3_4.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0020_remove_dnssecpolicy_parental_agents_and_more.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0021_alter_record_ptr_record.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0021_record_ip_address.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0022_alter_record_ipam_ip_address.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0022_search.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0023_alter_record_value.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0024_tenancy.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0025_ipam_coupling_cf.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0026_domain_registration.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0027_alter_registrar_iana_id.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0028_rfc2317_fields.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0029_record_fqdn.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/mixins/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/mixins/object_modification.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/models/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/models/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/models/dnssec_policy.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/models/nameserver.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/models/record.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/models/record_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/models/registrar.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/models/registration_contact.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/models/view.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/models/zone.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/models/zone_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/navigation.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/signals/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/signals/dnssec.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/signals/ipam_dnssync.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/dnssec_policy.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/ipam_dnssync.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/nameserver.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/record.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/record_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/registrar.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/registration_contact.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/view.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/zone.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/zone_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/template_content.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/dnsseckeytemplate.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/dnssecpolicy.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/nameserver.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/record/managed.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/record/related.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/record.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/recordtemplate.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/registrar.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/registrationcontact.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/view/button.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/view/prefix.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/view/related.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/view.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zone/base.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zone/child.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zone/child_zone.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zone/delegation_record.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zone/managed_record.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zone/record.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zone/registration.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zone/rfc2317_child_zone.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zone.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zonetemplate/child.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zonetemplate.html +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templatetags/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templatetags/netbox_dns.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/urls.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/utilities/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/utilities/conversions.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/utilities/dns.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/validators/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/validators/dns_name.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/validators/dns_value.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/validators/dnssec.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/validators/rfc2317.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/views/__init__.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/views/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/views/dnssec_policy.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/views/nameserver.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/views/record_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/views/registrar.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/views/registration_contact.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/views/view.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/views/zone.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/views/zone_template.py +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_plugin_dns.egg-info/dependency_links.txt +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_plugin_dns.egg-info/requires.txt +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_plugin_dns.egg-info/top_level.txt +0 -0
- {netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/setup.cfg +0 -0
|
@@ -4,7 +4,7 @@ from django.core.exceptions import ImproperlyConfigured
|
|
|
4
4
|
from netbox.plugins import PluginConfig
|
|
5
5
|
from netbox.plugins.utils import get_plugin_config
|
|
6
6
|
|
|
7
|
-
__version__ = "1.3.
|
|
7
|
+
__version__ = "1.3.6"
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
def _check_list(setting):
|
|
@@ -16,7 +16,7 @@ class DNSConfig(PluginConfig):
|
|
|
16
16
|
name = "netbox_dns"
|
|
17
17
|
verbose_name = _("NetBox DNS")
|
|
18
18
|
description = _("NetBox plugin for DNS data")
|
|
19
|
-
min_version = "4.3.
|
|
19
|
+
min_version = "4.3.2"
|
|
20
20
|
version = __version__
|
|
21
21
|
author = "Peter Eckel"
|
|
22
22
|
author_email = "pete@netbox-dns.org"
|
|
@@ -186,7 +186,7 @@ class Command(BaseCommand):
|
|
|
186
186
|
|
|
187
187
|
for record in orphaned_ptr_records:
|
|
188
188
|
if options.get("verbosity") > 1:
|
|
189
|
-
self.stdout.write("Removing orphaned PTR record '{record}'")
|
|
189
|
+
self.stdout.write(f"Removing orphaned PTR record '{record}'")
|
|
190
190
|
record.delete()
|
|
191
191
|
|
|
192
192
|
def _record_remove_orphaned_address_records(self, **options):
|
|
@@ -201,5 +201,5 @@ class Command(BaseCommand):
|
|
|
201
201
|
|
|
202
202
|
for record in orphaned_address_records:
|
|
203
203
|
if options.get("verbosity") > 1:
|
|
204
|
-
self.stdout.write("Removing orphaned address record '{record}'")
|
|
204
|
+
self.stdout.write(f"Removing orphaned address record '{record}'")
|
|
205
205
|
record.delete()
|
|
@@ -8,13 +8,6 @@ from netbox_dns.utilities import update_dns_records, get_zones
|
|
|
8
8
|
class Command(BaseCommand):
|
|
9
9
|
help = "Rebuild DNSsync relationships between IP addresses and records"
|
|
10
10
|
|
|
11
|
-
def add_arguments(self, parser):
|
|
12
|
-
parser.add_argument(
|
|
13
|
-
"--force",
|
|
14
|
-
action="store_true",
|
|
15
|
-
help="Update records even if DNS name was not changed (required for rebuilding filtered views)",
|
|
16
|
-
)
|
|
17
|
-
|
|
18
11
|
def handle(self, *model_names, **options):
|
|
19
12
|
ip_addresses = IPAddress.objects.all()
|
|
20
13
|
for ip_address in ip_addresses:
|
|
@@ -24,10 +17,7 @@ class Command(BaseCommand):
|
|
|
24
17
|
)
|
|
25
18
|
if options.get("verbosity") >= 3:
|
|
26
19
|
self.stdout.write(f" Zones: {get_zones(ip_address)}")
|
|
27
|
-
if (
|
|
28
|
-
update_dns_records(ip_address, force=options.get("force"))
|
|
29
|
-
and options.get("verbosity") >= 1
|
|
30
|
-
):
|
|
20
|
+
if update_dns_records(ip_address) and options.get("verbosity") >= 1:
|
|
31
21
|
self.stdout.write(
|
|
32
22
|
f"Updated DNS records for IP Address {ip_address}, VRF {ip_address.vrf}"
|
|
33
23
|
)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Generated by Django 5.2.3 on 2025-07-30 18:54
|
|
2
|
+
|
|
3
|
+
from django.db import migrations
|
|
4
|
+
|
|
5
|
+
from netbox_dns.choices import RecordTypeChoices
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def set_disable_ptr_false(apps, schema_editor):
|
|
9
|
+
Record = apps.get_model("netbox_dns", "Record")
|
|
10
|
+
|
|
11
|
+
for record in Record.objects.exclude(
|
|
12
|
+
type__in=(RecordTypeChoices.A, RecordTypeChoices.AAAA)
|
|
13
|
+
):
|
|
14
|
+
if record.disable_ptr:
|
|
15
|
+
record.disable_ptr = False
|
|
16
|
+
record.save()
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class Migration(migrations.Migration):
|
|
20
|
+
|
|
21
|
+
dependencies = [
|
|
22
|
+
("netbox_dns", "0022_alter_record_ipam_ip_address"),
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
operations = [
|
|
26
|
+
migrations.RunPython(set_disable_ptr_false),
|
|
27
|
+
]
|
|
@@ -187,15 +187,14 @@ def update_dns_records(ip_address, view=None, force=False):
|
|
|
187
187
|
continue
|
|
188
188
|
|
|
189
189
|
record.update_fqdn()
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
updated = True
|
|
190
|
+
updated, deleted = record.update_from_ip_address(ip_address)
|
|
191
|
+
|
|
192
|
+
if deleted:
|
|
193
|
+
record.delete()
|
|
194
|
+
updated = True
|
|
195
|
+
elif updated:
|
|
196
|
+
record.save()
|
|
197
|
+
updated = True
|
|
199
198
|
|
|
200
199
|
zones = Zone.objects.filter(pk__in=[zone.pk for zone in zones]).exclude(
|
|
201
200
|
pk__in=set(ip_address.netbox_dns_records.values_list("zone", flat=True))
|
|
@@ -68,7 +68,9 @@ class RecordView(generic.ObjectView):
|
|
|
68
68
|
value_fqdn = dns_name.from_text(instance.value_fqdn)
|
|
69
69
|
|
|
70
70
|
cname_targets = Record.objects.filter(
|
|
71
|
-
zone__view=instance.zone.view,
|
|
71
|
+
zone__view=instance.zone.view,
|
|
72
|
+
fqdn=value_fqdn,
|
|
73
|
+
active=True,
|
|
72
74
|
)
|
|
73
75
|
|
|
74
76
|
if cname_targets:
|
|
@@ -98,6 +100,7 @@ class RecordView(generic.ObjectView):
|
|
|
98
100
|
zone__view=instance.zone.view,
|
|
99
101
|
value=instance.fqdn,
|
|
100
102
|
type=RecordTypeChoices.CNAME,
|
|
103
|
+
active=True,
|
|
101
104
|
)
|
|
102
105
|
)
|
|
103
106
|
|
|
@@ -112,6 +115,7 @@ class RecordView(generic.ObjectView):
|
|
|
112
115
|
zone__view=instance.zone.view,
|
|
113
116
|
type=RecordTypeChoices.CNAME,
|
|
114
117
|
zone=parent_zone,
|
|
118
|
+
active=True,
|
|
115
119
|
)
|
|
116
120
|
cname_records = cname_records.union(
|
|
117
121
|
{
|
|
@@ -108,6 +108,7 @@ netbox_dns/migrations/0021_record_ip_address.py
|
|
|
108
108
|
netbox_dns/migrations/0022_alter_record_ipam_ip_address.py
|
|
109
109
|
netbox_dns/migrations/0022_search.py
|
|
110
110
|
netbox_dns/migrations/0023_alter_record_value.py
|
|
111
|
+
netbox_dns/migrations/0023_disable_ptr_false.py
|
|
111
112
|
netbox_dns/migrations/0024_tenancy.py
|
|
112
113
|
netbox_dns/migrations/0025_ipam_coupling_cf.py
|
|
113
114
|
netbox_dns/migrations/0026_domain_registration.py
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/dnssec_policy.py
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/nameserver.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/record_template.py
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/registrar.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/api/serializers_/zone_template.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/choices/dnssec_key_template.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/dnssec_key_template.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/record_template.py
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/filtersets/registration_contact.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/forms/registration_contact.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/dnssec_policy.py
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/nameserver.py
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/record_template.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/graphql/filters/zone_template.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/locale/de/LC_MESSAGES/django.mo
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/locale/en/LC_MESSAGES/django.mo
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/locale/fr/LC_MESSAGES/django.mo
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/management/commands/setup_dnssync.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0003_default_view.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0006_templating.py
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0008_view_prefixes.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0012_natural_ordering.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0020_netbox_3_4.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0021_record_ip_address.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0023_alter_record_value.py
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0025_ipam_coupling_cf.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0028_rfc2317_fields.py
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/migrations/0029_record_fqdn.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/mixins/object_modification.py
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/models/dnssec_key_template.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/models/registration_contact.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/dnssec_key_template.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/tables/registration_contact.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/nameserver.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/record.html
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/registrar.html
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/view/button.html
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/view/prefix.html
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/view.html
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zone/base.html
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zone/child.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zone/record.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/templates/netbox_dns/zone.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_dns/views/registration_contact.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_plugin_dns.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.3.5 → netbox_plugin_dns-1.3.6}/netbox_plugin_dns.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|