netbox-plugin-dns 1.3.2__py3-none-any.whl → 1.3.4__py3-none-any.whl
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_dns/__init__.py +1 -1
- netbox_dns/forms/zone.py +9 -2
- netbox_dns/locale/de/LC_MESSAGES/django.mo +0 -0
- netbox_dns/locale/fr/LC_MESSAGES/django.mo +0 -0
- netbox_dns/models/zone.py +30 -24
- netbox_dns/models/zone_template.py +2 -0
- netbox_dns/navigation.py +55 -55
- netbox_dns/templates/netbox_dns/zone/base.html +1 -1
- netbox_dns/templates/netbox_dns/zone.html +7 -0
- netbox_dns/utilities/ipam_dnssync.py +9 -4
- netbox_dns/views/zone.py +2 -0
- {netbox_plugin_dns-1.3.2.dist-info → netbox_plugin_dns-1.3.4.dist-info}/METADATA +1 -1
- {netbox_plugin_dns-1.3.2.dist-info → netbox_plugin_dns-1.3.4.dist-info}/RECORD +16 -16
- {netbox_plugin_dns-1.3.2.dist-info → netbox_plugin_dns-1.3.4.dist-info}/WHEEL +1 -1
- {netbox_plugin_dns-1.3.2.dist-info → netbox_plugin_dns-1.3.4.dist-info}/licenses/LICENSE +0 -0
- {netbox_plugin_dns-1.3.2.dist-info → netbox_plugin_dns-1.3.4.dist-info}/top_level.txt +0 -0
netbox_dns/__init__.py
CHANGED
netbox_dns/forms/zone.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from django import forms
|
|
2
|
-
from django.db import transaction
|
|
2
|
+
from django.db import models, transaction
|
|
3
3
|
from django.conf import settings
|
|
4
4
|
from django.core.validators import MinValueValidator, MaxValueValidator
|
|
5
5
|
from django.core.exceptions import ValidationError
|
|
@@ -101,7 +101,14 @@ class ZoneTemplateUpdateMixin:
|
|
|
101
101
|
custom_fields = {}
|
|
102
102
|
for key, value in zone_data.copy().items():
|
|
103
103
|
if key.startswith("cf_"):
|
|
104
|
-
|
|
104
|
+
if isinstance(value, models.Model):
|
|
105
|
+
custom_fields[key[3:]] = value.pk
|
|
106
|
+
elif isinstance(value, models.QuerySet):
|
|
107
|
+
custom_fields[key[3:]] = list(
|
|
108
|
+
value.values_list("pk", flat=True)
|
|
109
|
+
)
|
|
110
|
+
else:
|
|
111
|
+
custom_fields[key[3:]] = value
|
|
105
112
|
zone_data.pop(key)
|
|
106
113
|
if custom_fields:
|
|
107
114
|
zone_data["custom_field_data"] = custom_fields
|
|
Binary file
|
|
Binary file
|
netbox_dns/models/zone.py
CHANGED
|
@@ -585,6 +585,30 @@ class Zone(ObjectModificationMixin, ContactsMixin, NetBoxModel):
|
|
|
585
585
|
managed=True,
|
|
586
586
|
)
|
|
587
587
|
|
|
588
|
+
def _check_nameserver_address_records(self, nameserver):
|
|
589
|
+
name = dns_name.from_text(nameserver.name, origin=None)
|
|
590
|
+
parent = name.parent()
|
|
591
|
+
|
|
592
|
+
if len(parent) < 2:
|
|
593
|
+
return None
|
|
594
|
+
|
|
595
|
+
try:
|
|
596
|
+
ns_zone = Zone.objects.get(view_id=self.view.pk, name=parent.to_text())
|
|
597
|
+
except ObjectDoesNotExist:
|
|
598
|
+
return None
|
|
599
|
+
|
|
600
|
+
relative_name = name.relativize(parent).to_text()
|
|
601
|
+
address_records = ns_zone.records.filter(
|
|
602
|
+
Q(status__in=RECORD_ACTIVE_STATUS_LIST),
|
|
603
|
+
Q(Q(name=f"{nameserver.name}.") | Q(name=relative_name)),
|
|
604
|
+
Q(Q(type=RecordTypeChoices.A) | Q(type=RecordTypeChoices.AAAA)),
|
|
605
|
+
)
|
|
606
|
+
|
|
607
|
+
if not address_records.exists():
|
|
608
|
+
return _(
|
|
609
|
+
"Nameserver {ns} does not have an active address record in zone {zone}"
|
|
610
|
+
).format(ns=nameserver.name, zone=ns_zone)
|
|
611
|
+
|
|
588
612
|
def check_nameservers(self):
|
|
589
613
|
nameservers = self.nameservers.all()
|
|
590
614
|
|
|
@@ -597,33 +621,15 @@ class Zone(ObjectModificationMixin, ContactsMixin, NetBoxModel):
|
|
|
597
621
|
)
|
|
598
622
|
|
|
599
623
|
for _nameserver in nameservers:
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
if len(parent) < 2:
|
|
604
|
-
continue
|
|
605
|
-
|
|
606
|
-
try:
|
|
607
|
-
ns_zone = Zone.objects.get(view_id=self.view.pk, name=parent.to_text())
|
|
608
|
-
except ObjectDoesNotExist:
|
|
609
|
-
continue
|
|
610
|
-
|
|
611
|
-
relative_name = name.relativize(parent).to_text()
|
|
612
|
-
address_records = ns_zone.records.filter(
|
|
613
|
-
Q(status__in=RECORD_ACTIVE_STATUS_LIST),
|
|
614
|
-
Q(Q(name=f"{_nameserver.name}.") | Q(name=relative_name)),
|
|
615
|
-
Q(Q(type=RecordTypeChoices.A) | Q(type=RecordTypeChoices.AAAA)),
|
|
616
|
-
)
|
|
617
|
-
|
|
618
|
-
if not address_records:
|
|
619
|
-
ns_warnings.append(
|
|
620
|
-
_(
|
|
621
|
-
"Nameserver {nameserver} does not have an active address record in zone {zone}"
|
|
622
|
-
).format(nameserver=_nameserver.name, zone=ns_zone)
|
|
623
|
-
)
|
|
624
|
+
warning = self._check_nameserver_address_records(_nameserver)
|
|
625
|
+
if warning is not None:
|
|
626
|
+
ns_warnings.append(warning)
|
|
624
627
|
|
|
625
628
|
return ns_warnings, ns_errors
|
|
626
629
|
|
|
630
|
+
def check_soa_mname(self):
|
|
631
|
+
return self._check_nameserver_address_records(self.soa_mname)
|
|
632
|
+
|
|
627
633
|
def check_expiration(self):
|
|
628
634
|
if self.expiration_date is None:
|
|
629
635
|
return None, None
|
netbox_dns/navigation.py
CHANGED
|
@@ -26,42 +26,42 @@ view_menu_item = PluginMenuItem(
|
|
|
26
26
|
),
|
|
27
27
|
)
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
link="plugins:netbox_dns:
|
|
31
|
-
link_text=_("
|
|
32
|
-
permissions=["netbox_dns.
|
|
29
|
+
nameserver_menu_item = PluginMenuItem(
|
|
30
|
+
link="plugins:netbox_dns:nameserver_list",
|
|
31
|
+
link_text=_("Nameservers"),
|
|
32
|
+
permissions=["netbox_dns.view_nameserver"],
|
|
33
33
|
buttons=(
|
|
34
34
|
PluginMenuButton(
|
|
35
|
-
"plugins:netbox_dns:
|
|
35
|
+
"plugins:netbox_dns:nameserver_add",
|
|
36
36
|
_("Add"),
|
|
37
37
|
"mdi mdi-plus-thick",
|
|
38
|
-
permissions=["netbox_dns.
|
|
38
|
+
permissions=["netbox_dns.add_nameserver"],
|
|
39
39
|
),
|
|
40
40
|
PluginMenuButton(
|
|
41
|
-
"plugins:netbox_dns:
|
|
41
|
+
"plugins:netbox_dns:nameserver_bulk_import",
|
|
42
42
|
_("Import"),
|
|
43
43
|
"mdi mdi-upload",
|
|
44
|
-
permissions=["netbox_dns.
|
|
44
|
+
permissions=["netbox_dns.add_nameserver"],
|
|
45
45
|
),
|
|
46
46
|
),
|
|
47
47
|
)
|
|
48
48
|
|
|
49
|
-
|
|
50
|
-
link="plugins:netbox_dns:
|
|
51
|
-
link_text=_("
|
|
52
|
-
permissions=["netbox_dns.
|
|
49
|
+
zone_menu_item = PluginMenuItem(
|
|
50
|
+
link="plugins:netbox_dns:zone_list",
|
|
51
|
+
link_text=_("Zones"),
|
|
52
|
+
permissions=["netbox_dns.view_zone"],
|
|
53
53
|
buttons=(
|
|
54
54
|
PluginMenuButton(
|
|
55
|
-
"plugins:netbox_dns:
|
|
55
|
+
"plugins:netbox_dns:zone_add",
|
|
56
56
|
_("Add"),
|
|
57
57
|
"mdi mdi-plus-thick",
|
|
58
|
-
permissions=["netbox_dns.
|
|
58
|
+
permissions=["netbox_dns.add_zone"],
|
|
59
59
|
),
|
|
60
60
|
PluginMenuButton(
|
|
61
|
-
"plugins:netbox_dns:
|
|
61
|
+
"plugins:netbox_dns:zone_bulk_import",
|
|
62
62
|
_("Import"),
|
|
63
63
|
"mdi mdi-upload",
|
|
64
|
-
permissions=["netbox_dns.
|
|
64
|
+
permissions=["netbox_dns.add_zone"],
|
|
65
65
|
),
|
|
66
66
|
),
|
|
67
67
|
)
|
|
@@ -92,82 +92,82 @@ managed_record_menu_item = PluginMenuItem(
|
|
|
92
92
|
permissions=["netbox_dns.view_record"],
|
|
93
93
|
)
|
|
94
94
|
|
|
95
|
-
|
|
96
|
-
link="plugins:netbox_dns:
|
|
97
|
-
link_text=_("
|
|
98
|
-
permissions=["netbox_dns.
|
|
95
|
+
zonetemplate_menu_item = PluginMenuItem(
|
|
96
|
+
link="plugins:netbox_dns:zonetemplate_list",
|
|
97
|
+
link_text=_("Zone Templates"),
|
|
98
|
+
permissions=["netbox_dns.view_zonetemplate"],
|
|
99
99
|
buttons=(
|
|
100
100
|
PluginMenuButton(
|
|
101
|
-
"plugins:netbox_dns:
|
|
101
|
+
"plugins:netbox_dns:zonetemplate_add",
|
|
102
102
|
_("Add"),
|
|
103
103
|
"mdi mdi-plus-thick",
|
|
104
|
-
permissions=["netbox_dns.
|
|
104
|
+
permissions=["netbox_dns.add_zonetemplate"],
|
|
105
105
|
),
|
|
106
106
|
PluginMenuButton(
|
|
107
|
-
"plugins:netbox_dns:
|
|
107
|
+
"plugins:netbox_dns:zonetemplate_bulk_import",
|
|
108
108
|
_("Import"),
|
|
109
109
|
"mdi mdi-upload",
|
|
110
|
-
permissions=["netbox_dns.
|
|
110
|
+
permissions=["netbox_dns.add_zonetemplate"],
|
|
111
111
|
),
|
|
112
112
|
),
|
|
113
113
|
)
|
|
114
114
|
|
|
115
|
-
|
|
116
|
-
link="plugins:netbox_dns:
|
|
117
|
-
link_text=_("
|
|
118
|
-
permissions=["netbox_dns.
|
|
115
|
+
recordtemplate_menu_item = PluginMenuItem(
|
|
116
|
+
link="plugins:netbox_dns:recordtemplate_list",
|
|
117
|
+
link_text=_("Record Templates"),
|
|
118
|
+
permissions=["netbox_dns.view_recordtemplate"],
|
|
119
119
|
buttons=(
|
|
120
120
|
PluginMenuButton(
|
|
121
|
-
"plugins:netbox_dns:
|
|
121
|
+
"plugins:netbox_dns:recordtemplate_add",
|
|
122
122
|
_("Add"),
|
|
123
123
|
"mdi mdi-plus-thick",
|
|
124
|
-
permissions=["netbox_dns.
|
|
124
|
+
permissions=["netbox_dns.add_recordtemplate"],
|
|
125
125
|
),
|
|
126
126
|
PluginMenuButton(
|
|
127
|
-
"plugins:netbox_dns:
|
|
127
|
+
"plugins:netbox_dns:recordtemplate_bulk_import",
|
|
128
128
|
_("Import"),
|
|
129
129
|
"mdi mdi-upload",
|
|
130
|
-
permissions=["netbox_dns.
|
|
130
|
+
permissions=["netbox_dns.add_recordtemplate"],
|
|
131
131
|
),
|
|
132
132
|
),
|
|
133
133
|
)
|
|
134
134
|
|
|
135
|
-
|
|
136
|
-
link="plugins:netbox_dns:
|
|
137
|
-
link_text=_("
|
|
138
|
-
permissions=["netbox_dns.
|
|
135
|
+
dnsseckeytemplate_menu_item = PluginMenuItem(
|
|
136
|
+
link="plugins:netbox_dns:dnsseckeytemplate_list",
|
|
137
|
+
link_text=_("DNSSEC Key Templates"),
|
|
138
|
+
permissions=["netbox_dns.view_dnsseckeytemplate"],
|
|
139
139
|
buttons=(
|
|
140
140
|
PluginMenuButton(
|
|
141
|
-
"plugins:netbox_dns:
|
|
141
|
+
"plugins:netbox_dns:dnsseckeytemplate_add",
|
|
142
142
|
_("Add"),
|
|
143
143
|
"mdi mdi-plus-thick",
|
|
144
|
-
permissions=["netbox_dns.
|
|
144
|
+
permissions=["netbox_dns.add_dnsseckeytemplate"],
|
|
145
145
|
),
|
|
146
146
|
PluginMenuButton(
|
|
147
|
-
"plugins:netbox_dns:
|
|
147
|
+
"plugins:netbox_dns:dnsseckeytemplate_bulk_import",
|
|
148
148
|
_("Import"),
|
|
149
149
|
"mdi mdi-upload",
|
|
150
|
-
permissions=["netbox_dns.
|
|
150
|
+
permissions=["netbox_dns.add_dnsseckeytemplate"],
|
|
151
151
|
),
|
|
152
152
|
),
|
|
153
153
|
)
|
|
154
154
|
|
|
155
|
-
|
|
156
|
-
link="plugins:netbox_dns:
|
|
157
|
-
link_text=_("
|
|
158
|
-
permissions=["netbox_dns.
|
|
155
|
+
dnssecpolicy_menu_item = PluginMenuItem(
|
|
156
|
+
link="plugins:netbox_dns:dnssecpolicy_list",
|
|
157
|
+
link_text=_("DNSSEC Policies"),
|
|
158
|
+
permissions=["netbox_dns.view_dnssecpolicy"],
|
|
159
159
|
buttons=(
|
|
160
160
|
PluginMenuButton(
|
|
161
|
-
"plugins:netbox_dns:
|
|
161
|
+
"plugins:netbox_dns:dnssecpolicy_add",
|
|
162
162
|
_("Add"),
|
|
163
163
|
"mdi mdi-plus-thick",
|
|
164
|
-
permissions=["netbox_dns.
|
|
164
|
+
permissions=["netbox_dns.add_dnssecpolicy"],
|
|
165
165
|
),
|
|
166
166
|
PluginMenuButton(
|
|
167
|
-
"plugins:netbox_dns:
|
|
167
|
+
"plugins:netbox_dns:dnssecpolicy_bulk_import",
|
|
168
168
|
_("Import"),
|
|
169
169
|
"mdi mdi-upload",
|
|
170
|
-
permissions=["netbox_dns.
|
|
170
|
+
permissions=["netbox_dns.add_dnssecpolicy"],
|
|
171
171
|
),
|
|
172
172
|
),
|
|
173
173
|
)
|
|
@@ -221,24 +221,24 @@ if top_level_menu:
|
|
|
221
221
|
_("DNS Configuration"),
|
|
222
222
|
(
|
|
223
223
|
view_menu_item,
|
|
224
|
-
zone_menu_item,
|
|
225
224
|
nameserver_menu_item,
|
|
225
|
+
zone_menu_item,
|
|
226
226
|
record_menu_item,
|
|
227
227
|
managed_record_menu_item,
|
|
228
228
|
),
|
|
229
229
|
),
|
|
230
230
|
(
|
|
231
|
-
_("
|
|
231
|
+
_("Templates"),
|
|
232
232
|
(
|
|
233
|
-
|
|
234
|
-
|
|
233
|
+
zonetemplate_menu_item,
|
|
234
|
+
recordtemplate_menu_item,
|
|
235
235
|
),
|
|
236
236
|
),
|
|
237
237
|
(
|
|
238
|
-
_("
|
|
238
|
+
_("DNSSEC"),
|
|
239
239
|
(
|
|
240
|
-
|
|
241
|
-
|
|
240
|
+
dnsseckeytemplate_menu_item,
|
|
241
|
+
dnssecpolicy_menu_item,
|
|
242
242
|
),
|
|
243
243
|
),
|
|
244
244
|
(
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
{% block extra_controls %}
|
|
9
9
|
{% if perms.netbox_dns.add_record %}
|
|
10
|
-
<a href="{% url 'plugins:netbox_dns:record_add' %}?zone={{ object.pk }}&return_url={
|
|
10
|
+
<a href="{% url 'plugins:netbox_dns:record_add' %}?zone={{ object.pk }}&return_url={% url 'plugins:netbox_dns:zone_records' pk=object.pk %}">
|
|
11
11
|
<button type="submit" class="btn btn-primary" name="add-record">
|
|
12
12
|
<i class="mdi mdi-plus-thick" aria-hidden="true"></i>{% trans "Add Record" %}
|
|
13
13
|
</button>
|
|
@@ -137,6 +137,13 @@
|
|
|
137
137
|
<th scope="row">{% trans "MName" %}</th>
|
|
138
138
|
<td>{{ object.soa_mname|linkify }}</td>
|
|
139
139
|
</tr>
|
|
140
|
+
{% if mname_warning %}
|
|
141
|
+
<tr>
|
|
142
|
+
<th class="text-warning" scope="row">{% trans "Warning" %}</th>
|
|
143
|
+
<td class="text-warning">{{ mname_warning }}</td>
|
|
144
|
+
</tr>
|
|
145
|
+
{% endif %}
|
|
146
|
+
|
|
140
147
|
<tr>
|
|
141
148
|
<th scope="row">{% trans "RName" %}</th>
|
|
142
149
|
<td>{{ object.soa_rname }}</td>
|
|
@@ -227,10 +227,15 @@ def delete_dns_records(ip_address, view=None):
|
|
|
227
227
|
# TODO: Find something better. This is really awful.
|
|
228
228
|
# -
|
|
229
229
|
address_records = Record.objects.filter(
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
230
|
+
Q(
|
|
231
|
+
Q(ipam_ip_address=ip_address)
|
|
232
|
+
| Q(
|
|
233
|
+
type__in=(RecordTypeChoices.A, RecordTypeChoices.AAAA),
|
|
234
|
+
managed=True,
|
|
235
|
+
ip_address=ip_address.address,
|
|
236
|
+
ipam_ip_address__isnull=True,
|
|
237
|
+
)
|
|
238
|
+
),
|
|
234
239
|
)
|
|
235
240
|
|
|
236
241
|
if view is not None:
|
netbox_dns/views/zone.py
CHANGED
|
@@ -52,10 +52,12 @@ class ZoneView(generic.ObjectView):
|
|
|
52
52
|
|
|
53
53
|
def get_extra_context(self, request, instance):
|
|
54
54
|
ns_warnings, ns_errors = instance.check_nameservers()
|
|
55
|
+
mname_warning = instance.check_soa_mname()
|
|
55
56
|
|
|
56
57
|
context = {
|
|
57
58
|
"nameserver_warnings": ns_warnings,
|
|
58
59
|
"nameserver_errors": ns_errors,
|
|
60
|
+
"mname_warning": mname_warning,
|
|
59
61
|
"parent_zone": instance.parent_zone,
|
|
60
62
|
}
|
|
61
63
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
netbox_dns/__init__.py,sha256=
|
|
1
|
+
netbox_dns/__init__.py,sha256=7cUgAlRJDPqry-F9FMUjy3q8pMPXMG4GQMeEIDpZmaY,4890
|
|
2
2
|
netbox_dns/apps.py,sha256=JCW5eS-AQBUubDJve1DjP-IRFKTFGQh1NLGWzJpC5MI,151
|
|
3
|
-
netbox_dns/navigation.py,sha256=
|
|
3
|
+
netbox_dns/navigation.py,sha256=ZF2-bKRfuxXnLArSCvozyRXRd7GME14sVJZdmDEMhBk,7741
|
|
4
4
|
netbox_dns/template_content.py,sha256=nwjbWkMc02vpTmcFQdiAA1TdopJiZ0MkRy6qa18_wLI,4848
|
|
5
5
|
netbox_dns/urls.py,sha256=wrse8l5scD-jz_O7WY0YXRlYPzpkL-0-kyAd-wCPtbQ,2596
|
|
6
6
|
netbox_dns/api/field_serializers.py,sha256=nVZ6d69DWagONDwbYCP2j3cmL-x9lryitF1wThEJxyI,725
|
|
@@ -53,7 +53,7 @@ netbox_dns/forms/record_template.py,sha256=5yuY2ppV2diEOdm_IN3QSLLEdWkOkWZOYRtOh
|
|
|
53
53
|
netbox_dns/forms/registrar.py,sha256=oLMcXJOpt0F02a2Aga6A45rja7TvI18nTCZb_Dx_8t0,4038
|
|
54
54
|
netbox_dns/forms/registration_contact.py,sha256=GtUmHzPmAFNRt81rTgJbmb5TMoEJ-mpmjltkuyppJwc,6157
|
|
55
55
|
netbox_dns/forms/view.py,sha256=KZ2enzbqAEElt3b5C02kMJwnIDEjdQf_BsgMuMqKP50,10836
|
|
56
|
-
netbox_dns/forms/zone.py,sha256=
|
|
56
|
+
netbox_dns/forms/zone.py,sha256=aVeSvUwohcqqetPupj4FQRgouE5fS53vvIoe82zmoaA,30334
|
|
57
57
|
netbox_dns/forms/zone_template.py,sha256=ACx8YJirsrGMMQExVL-aEOaitsUYMyNBL793CoQZrWQ,11716
|
|
58
58
|
netbox_dns/graphql/__init__.py,sha256=0xg_5d1PPFTadBOZo752t5sfZeLFrqs2jM51Rbf8ti4,652
|
|
59
59
|
netbox_dns/graphql/enums.py,sha256=vC-v24AuNbaGoekLTDu1PBVbnR1aYeX6LmvrZkfd2F4,1453
|
|
@@ -71,9 +71,9 @@ netbox_dns/graphql/filters/registration_contact.py,sha256=feCw4zZd2UQ9895Gg0PJ4R
|
|
|
71
71
|
netbox_dns/graphql/filters/view.py,sha256=ozXGNJ0ELri2FAnQXPHDs3--Hznzx4ZF5mH264nr-DI,934
|
|
72
72
|
netbox_dns/graphql/filters/zone.py,sha256=2mqPq4jikCWhbGRbIIcKbCXRtA9QiH6rXb5ufk1DAFE,5253
|
|
73
73
|
netbox_dns/graphql/filters/zone_template.py,sha256=6ZxBN_VPXvBDGXXwcYlkX6wJXx_IlMAZIEDX5-ARO_4,3100
|
|
74
|
-
netbox_dns/locale/de/LC_MESSAGES/django.mo,sha256=
|
|
74
|
+
netbox_dns/locale/de/LC_MESSAGES/django.mo,sha256=fSlYDunygrkHE4TAIlHI0ol67Lz3qiu2hUkeirewlOQ,29995
|
|
75
75
|
netbox_dns/locale/en/LC_MESSAGES/django.mo,sha256=GDnSZkfHs3yjtTsll7dksEEej4B50F8pc9RGytZNubM,393
|
|
76
|
-
netbox_dns/locale/fr/LC_MESSAGES/django.mo,sha256=
|
|
76
|
+
netbox_dns/locale/fr/LC_MESSAGES/django.mo,sha256=hZjbClaXZndP8VtqAiXWBdYEFVD9CQrKJXelL6kMOPE,30021
|
|
77
77
|
netbox_dns/management/commands/cleanup_database.py,sha256=1-tAl0Sht80qaNZyfFyUW19Eh9gBUuc7GdbHN4aemGU,5935
|
|
78
78
|
netbox_dns/management/commands/cleanup_rrset_ttl.py,sha256=UFRURLBcFeGHUS2lrYFv7UWIebjI72aG1EUQJt0XsXw,2046
|
|
79
79
|
netbox_dns/management/commands/rebuild_dnssync.py,sha256=Tcl385u6kJTX47SvSyRzKm1RIx4nYRYCMcKr3uVnV60,1246
|
|
@@ -125,8 +125,8 @@ netbox_dns/models/record_template.py,sha256=Qr43_YZm1z3Od1cBdDY9wpNlV-UCzvpn2c6_
|
|
|
125
125
|
netbox_dns/models/registrar.py,sha256=-ozazecvd-oryEoDlOUvTWhEQKKQp3my6YVTEzWlUuI,1747
|
|
126
126
|
netbox_dns/models/registration_contact.py,sha256=9ehnTjg8KUrUYJKRRu2SaJX-NE5dO4wy90FRPlT2ys4,3620
|
|
127
127
|
netbox_dns/models/view.py,sha256=pwo7i8gtukIRgAC1A4rm58jcEpIbsSW_IUq6vSv-mRo,4618
|
|
128
|
-
netbox_dns/models/zone.py,sha256=
|
|
129
|
-
netbox_dns/models/zone_template.py,sha256=
|
|
128
|
+
netbox_dns/models/zone.py,sha256=8MB8p6R9K-5K8eR2AKZXb6rwnnWDvcd-_KFLi5JqviQ,35825
|
|
129
|
+
netbox_dns/models/zone_template.py,sha256=ShPg6_ts6W-dpdGzUg3oZnGHEEQ-_Jf0EdYwVWzaPwI,5093
|
|
130
130
|
netbox_dns/signals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
131
|
netbox_dns/signals/dnssec.py,sha256=o4MOEg6ftxoDWFAhDtajkXzb7Nb6KuUHjtx1zNu7C1w,1040
|
|
132
132
|
netbox_dns/signals/ipam_dnssync.py,sha256=1zhlf4cMcJLlFosX7YzyqVYdFFHV4MFwTz5KCdL8xQc,7730
|
|
@@ -150,14 +150,14 @@ netbox_dns/templates/netbox_dns/recordtemplate.html,sha256=a29PAUl-KI_I1lxWpVdPp
|
|
|
150
150
|
netbox_dns/templates/netbox_dns/registrar.html,sha256=4kJuj3biiDxQrIMQEQUEmF4iGRE4psr6Fh0CBP1evz8,2308
|
|
151
151
|
netbox_dns/templates/netbox_dns/registrationcontact.html,sha256=sljVp_MrPSJRc2vJCPFXq9MiWOw4wjbr1kI_YStBntw,3094
|
|
152
152
|
netbox_dns/templates/netbox_dns/view.html,sha256=1MuzOYNQezRrryNjlklgxErjGTFoVnwqcxf4qceuglw,3320
|
|
153
|
-
netbox_dns/templates/netbox_dns/zone.html,sha256=
|
|
153
|
+
netbox_dns/templates/netbox_dns/zone.html,sha256=Hx2SL9gk7IKzBv5q45eESQADBPOCgbsW1yGe96-wlik,8262
|
|
154
154
|
netbox_dns/templates/netbox_dns/zonetemplate.html,sha256=a3QD0O_8CW2MUBnU_nXGweGhCwo5pYDVlwJHzovC1RU,4344
|
|
155
155
|
netbox_dns/templates/netbox_dns/record/managed.html,sha256=uwpxQTxyfAXkWqThLT-T2ZssKNUhXTDDMnLWJSVuDNU,119
|
|
156
156
|
netbox_dns/templates/netbox_dns/record/related.html,sha256=R59aPhE4CyIZtTH0ncwDyS6_wAe_Y-oZjuN_j4qk8iA,1158
|
|
157
157
|
netbox_dns/templates/netbox_dns/view/button.html,sha256=EMOB5x78XpyfN1qi-pY1CKKKLjyHo9rFUa4Uhq6rFMc,322
|
|
158
158
|
netbox_dns/templates/netbox_dns/view/prefix.html,sha256=Eaur1fd0YHeGttp2vRucz-ix7itxNu6To3NXwliGZco,1560
|
|
159
159
|
netbox_dns/templates/netbox_dns/view/related.html,sha256=C5P6IuRmQ_S2hAC44ceFyNJn8JVqRxMwIXkS0dEL500,1239
|
|
160
|
-
netbox_dns/templates/netbox_dns/zone/base.html,sha256=
|
|
160
|
+
netbox_dns/templates/netbox_dns/zone/base.html,sha256=TWmFHnwRNjtBxidmSbiF7DzUmb6Poc2wnKNZDq9Karw,552
|
|
161
161
|
netbox_dns/templates/netbox_dns/zone/child.html,sha256=zvRHvgWiRmd58YlJCjVTPK4tdyH1UYXOJt8SzUuLMcM,2191
|
|
162
162
|
netbox_dns/templates/netbox_dns/zone/child_zone.html,sha256=b9CSGWEfWT7hLQ80gApMnu7mXM8w2LT-3UaOYe6HIRQ,510
|
|
163
163
|
netbox_dns/templates/netbox_dns/zone/delegation_record.html,sha256=bpJoyEYb5CVCoeH2260KMwwL6pUJxKA-Dt0qUruBEdk,517
|
|
@@ -171,7 +171,7 @@ netbox_dns/templatetags/netbox_dns.py,sha256=DND1DMPzv636Rak3M6Hor_Vw6pjqUfSTquo
|
|
|
171
171
|
netbox_dns/utilities/__init__.py,sha256=cSGf-nGaRWx9b-Xrh3dLMJYoWNsZ6FF-qdmV4F1uOgg,74
|
|
172
172
|
netbox_dns/utilities/conversions.py,sha256=qYnzecmR28l8Je_H0vFvzJ2sikTiEiyxr6drl_aRocg,3016
|
|
173
173
|
netbox_dns/utilities/dns.py,sha256=UBiyQe8thiOTnKOmU9e2iRHHnGF9toVLe4efU623kX4,322
|
|
174
|
-
netbox_dns/utilities/ipam_dnssync.py,sha256=
|
|
174
|
+
netbox_dns/utilities/ipam_dnssync.py,sha256=IB26jxdijjjkcRj5JTV2We3frqbfzBXhPb3xegRQg0w,10462
|
|
175
175
|
netbox_dns/validators/__init__.py,sha256=X0hPZlC3VZcXMcvXKZ2_5LSoEJdXPNSBr4QtEIFSBJ0,94
|
|
176
176
|
netbox_dns/validators/dns_name.py,sha256=1MKnYAmkSTIQGf6zInqkpbIj5SCeCM0YGKmYOqFzUK4,3770
|
|
177
177
|
netbox_dns/validators/dns_value.py,sha256=cADhgTohXAtOLPzaoMKO9DahEUiDanpdiuKonrwFw0E,5278
|
|
@@ -186,10 +186,10 @@ netbox_dns/views/record_template.py,sha256=Cye1rjlpAewRgIv7QGD7o5n-knjzqjEUJzZHV
|
|
|
186
186
|
netbox_dns/views/registrar.py,sha256=gYpMyz3rRJDmBfEeRfVENvR6fdWXN1y0XbN4JBlXoHc,2625
|
|
187
187
|
netbox_dns/views/registration_contact.py,sha256=5bJWjNBisqCkBo6d2TJyyBJlc95WM7VcSA6wsEB184k,3383
|
|
188
188
|
netbox_dns/views/view.py,sha256=xLXt7sKrda3FpNXsBSJk8L8P2XhZ1sVb5OOXovCsKEU,3089
|
|
189
|
-
netbox_dns/views/zone.py,sha256=
|
|
189
|
+
netbox_dns/views/zone.py,sha256=rxf0ETFnBF88JbhxUZWtcid_CAm7tssYfp2EFjk7zyg,7160
|
|
190
190
|
netbox_dns/views/zone_template.py,sha256=5P9DT3XBRL-TiM5zFhBTMlMusL4bP2jTu3GHxKz5ojc,2553
|
|
191
|
-
netbox_plugin_dns-1.3.
|
|
192
|
-
netbox_plugin_dns-1.3.
|
|
193
|
-
netbox_plugin_dns-1.3.
|
|
194
|
-
netbox_plugin_dns-1.3.
|
|
195
|
-
netbox_plugin_dns-1.3.
|
|
191
|
+
netbox_plugin_dns-1.3.4.dist-info/licenses/LICENSE,sha256=I3tDu11bZfhFm3EkV4zOD5TmWgLjnUNLEFwrdjniZYs,1112
|
|
192
|
+
netbox_plugin_dns-1.3.4.dist-info/METADATA,sha256=wbc1V3I53MwepXrnhT2D4Q1v39PpOccje8VlP6DjKqw,7787
|
|
193
|
+
netbox_plugin_dns-1.3.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
194
|
+
netbox_plugin_dns-1.3.4.dist-info/top_level.txt,sha256=sA1Rwl1mRKvMC6XHe2ylZ1GF-Q1NGd08XedK9Y4xZc4,11
|
|
195
|
+
netbox_plugin_dns-1.3.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|