diff --git a/install/ui/certificate.js b/install/ui/certificate.js
index 372edcdaa..70533c14d 100755
--- a/install/ui/certificate.js
+++ b/install/ui/certificate.js
@@ -437,8 +437,9 @@ IPA.cert.request_dialog = function(spec) {
var that = IPA.dialog(spec);
- that.width = spec.width || 500;
- that.height = spec.height || 400;
+ that.width = spec.width || 600;
+ that.height = spec.height || 450;
+ that.message = spec.message;
that.request = spec.request;
@@ -466,14 +467,11 @@ IPA.cert.request_dialog = function(spec) {
});
that.create = function() {
- that.container.append(IPA.messages.objects.cert.enter_csr+':');
- that.container.append('
');
- that.container.append('
');
+ that.container.append(that.message);
that.textarea = $('', {
style: 'width: 100%; height: 225px;'
}).appendTo(that.container);
-
};
return that;
@@ -829,8 +827,9 @@ IPA.cert.status_widget = function(spec) {
title = title.replace('${primary_key}', entity_name);
var dialog = IPA.cert.request_dialog({
- 'title': title,
- 'request': function(values) {
+ title: title,
+ message: that.request_message,
+ request: function(values) {
var request = values['request'];
IPA.command({
diff --git a/install/ui/host.js b/install/ui/host.js
index 88635955c..b6b1ebf39 100644
--- a/install/ui/host.js
+++ b/install/ui/host.js
@@ -861,14 +861,35 @@ IPA.host_password_field = function (spec) {
IPA.widget_factories['host_password'] = IPA.host_password_widget;
IPA.field_factories['host_password'] = IPA.host_password_field;
-IPA.host_certificate_status_widget = function (spec) {
+IPA.host.certificate_status_field = function(spec) {
+
+ spec = spec || {};
+
+ var that = IPA.cert.status_field(spec);
+
+ that.load = function(result) {
+
+ that.widget.result = result;
+
+ var message = IPA.messages.objects.cert.request_message;
+ message = message.replace(/\$\{hostname\}/g, result.fqdn[0]);
+ message = message.replace(/\$\{realm\}/g, IPA.env.realm);
+ that.widget.request_message = message;
+
+ that.reset();
+ };
+
+ return that;
+};
+
+IPA.host.certificate_status_widget = function(spec) {
spec = spec || {};
var that = IPA.cert.status_widget(spec);
that.get_entity_pkey = function(result) {
- var values = result['fqdn'];
+ var values = result.fqdn;
return values ? values[0] : null;
};
@@ -877,19 +898,19 @@ IPA.host_certificate_status_widget = function (spec) {
};
that.get_entity_principal = function(result) {
- var values = result['krbprincipalname'];
+ var values = result.krbprincipalname;
return values ? values[0] : null;
};
that.get_entity_certificate = function(result) {
- var values = result['usercertificate'];
+ var values = result.usercertificate;
return values ? values[0].__base64__ : null;
};
return that;
};
-IPA.widget_factories['host_certificate_status'] = IPA.host_certificate_status_widget;
-IPA.field_factories['host_certificate_status'] = IPA.cert.status_field;
+IPA.widget_factories['host_certificate_status'] = IPA.host.certificate_status_widget;
+IPA.field_factories['host_certificate_status'] = IPA.host.certificate_status_field;
IPA.register('host', IPA.host.entity);
diff --git a/install/ui/service.js b/install/ui/service.js
index e41da2f99..f60d45550 100644
--- a/install/ui/service.js
+++ b/install/ui/service.js
@@ -180,7 +180,7 @@ IPA.service_name_field = function(spec) {
that.field_load(record);
- var krbprincipalname = record['krbprincipalname'][0];
+ var krbprincipalname = record.krbprincipalname[0];
var value = krbprincipalname.replace(/\/.*$/, '');
that.values = [value];
@@ -204,7 +204,7 @@ IPA.service_host_field = function(spec) {
that.field_load(record);
- var krbprincipalname = record['krbprincipalname'][0];
+ var krbprincipalname = record.krbprincipalname[0];
var value = krbprincipalname.replace(/^.*\//, '').replace(/@.*$/, '');
that.values = [value];
@@ -362,14 +362,38 @@ IPA.service_provisioning_status_field = function (spec) {
IPA.field_factories['service_provisioning_status'] = IPA.service_provisioning_status_field;
IPA.widget_factories['service_provisioning_status'] = IPA.service_provisioning_status_widget;
-IPA.service_certificate_status_widget = function (spec) {
+IPA.service.certificate_status_field = function(spec) {
+
+ spec = spec || {};
+
+ var that = IPA.cert.status_field(spec);
+
+ that.load = function(result) {
+
+ that.widget.result = result;
+
+ var krbprincipalname = result.krbprincipalname[0];
+ var hostname = krbprincipalname.replace(/^.*\//, '').replace(/@.*$/, '');
+
+ var message = IPA.messages.objects.cert.request_message;
+ message = message.replace(/\$\{hostname\}/g, hostname);
+ message = message.replace(/\$\{realm\}/g, IPA.env.realm);
+ that.widget.request_message = message;
+
+ that.reset();
+ };
+
+ return that;
+};
+
+IPA.service.certificate_status_widget = function(spec) {
spec = spec || {};
var that = IPA.cert.status_widget(spec);
that.get_entity_pkey = function(result) {
- var values = result['krbprincipalname'];
+ var values = result.krbprincipalname;
return values ? values[0] : null;
};
@@ -383,14 +407,14 @@ IPA.service_certificate_status_widget = function (spec) {
};
that.get_entity_certificate = function(result) {
- var values = result['usercertificate'];
+ var values = result.usercertificate;
return values ? values[0].__base64__ : null;
};
return that;
};
-IPA.widget_factories['service_certificate_status'] = IPA.service_certificate_status_widget;
-IPA.field_factories['service_certificate_status'] = IPA.cert.status_field;
+IPA.widget_factories['service_certificate_status'] = IPA.service.certificate_status_widget;
+IPA.field_factories['service_certificate_status'] = IPA.service.certificate_status_field;
IPA.register('service', IPA.service.entity);
diff --git a/install/ui/test/data/automountkey_add.json b/install/ui/test/data/automountkey_add.json
index c4e442d47..dd3ad10d1 100644
--- a/install/ui/test/data/automountkey_add.json
+++ b/install/ui/test/data/automountkey_add.json
@@ -12,7 +12,7 @@
"description": [
"/var/log/ipa mountinfogoeshere"
],
- "dn": "description=/var/log/ipa mountinfogoeshere,automountmapname=auto.master,cn=default,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "description=/var/log/ipa mountinfogoeshere,automountmapname=auto.master,cn=default,cn=automount,dc=example,dc=com",
"objectclass": [
"automount",
"top"
diff --git a/install/ui/test/data/automountkey_find.json b/install/ui/test/data/automountkey_find.json
index 3123b551d..71de79d3b 100644
--- a/install/ui/test/data/automountkey_find.json
+++ b/install/ui/test/data/automountkey_find.json
@@ -14,7 +14,7 @@
"description": [
"nfsserver:/var/log/dirsrv /var/log/dirsrv"
],
- "dn": "description=nfsserver:/var/log/dirsrv /var/log/dirsrv,automountmapname=auto.log,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "description=nfsserver:/var/log/dirsrv /var/log/dirsrv,automountmapname=auto.log,cn=bos,cn=automount,dc=example,dc=com",
"objectclass": [
"automount",
"top"
@@ -30,7 +30,7 @@
"description": [
"nfsserver:/var/log/ipa /var/log/ipa"
],
- "dn": "description=nfsserver:/var/log/ipa /var/log/ipa,automountmapname=auto.log,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "description=nfsserver:/var/log/ipa /var/log/ipa,automountmapname=auto.log,cn=bos,cn=automount,dc=example,dc=com",
"objectclass": [
"automount",
"top"
diff --git a/install/ui/test/data/automountkey_show.json b/install/ui/test/data/automountkey_show.json
index 599e2a5a0..e55a1efc2 100644
--- a/install/ui/test/data/automountkey_show.json
+++ b/install/ui/test/data/automountkey_show.json
@@ -20,7 +20,7 @@
"description": [
"/home auto.home"
],
- "dn": "description=/home auto.home,automountmapname=auto.master,cn=default,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "description=/home auto.home,automountmapname=auto.master,cn=default,cn=automount,dc=example,dc=com",
"objectclass": [
"automount",
"top"
diff --git a/install/ui/test/data/automountlocation_add.json b/install/ui/test/data/automountlocation_add.json
index da0c871ac..41db8a717 100644
--- a/install/ui/test/data/automountlocation_add.json
+++ b/install/ui/test/data/automountlocation_add.json
@@ -6,7 +6,7 @@
"cn": [
"YYZ"
],
- "dn": "cn=yyz,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "cn=yyz,cn=automount,dc=example,dc=com",
"objectclass": [
"nscontainer",
"top"
diff --git a/install/ui/test/data/automountmap_add.json b/install/ui/test/data/automountmap_add.json
index 77db2c3d0..d3e88c55b 100644
--- a/install/ui/test/data/automountmap_add.json
+++ b/install/ui/test/data/automountmap_add.json
@@ -6,7 +6,7 @@
"automountmapname": [
"auto.log"
],
- "dn": "automountmapname=auto.log,cn=mtv,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "automountmapname=auto.log,cn=mtv,cn=automount,dc=example,dc=com",
"objectclass": [
"automountmap",
"top"
diff --git a/install/ui/test/data/automountmap_add_indirect.json b/install/ui/test/data/automountmap_add_indirect.json
index c2efba4a8..d9e3800ae 100644
--- a/install/ui/test/data/automountmap_add_indirect.json
+++ b/install/ui/test/data/automountmap_add_indirect.json
@@ -9,7 +9,7 @@
"description": [
"test"
],
- "dn": "automountmapname=test,cn=default,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "automountmapname=test,cn=default,cn=automount,dc=example,dc=com",
"objectclass": [
"automountmap",
"top"
diff --git a/install/ui/test/data/automountmap_find.json b/install/ui/test/data/automountmap_find.json
index aaa0d71cf..f88d2c2e7 100644
--- a/install/ui/test/data/automountmap_find.json
+++ b/install/ui/test/data/automountmap_find.json
@@ -8,7 +8,7 @@
"automountmapname": [
"auto.direct"
],
- "dn": "automountmapname=auto.direct,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "automountmapname=auto.direct,cn=bos,cn=automount,dc=example,dc=com",
"objectclass": [
"automountmap",
"top"
@@ -18,7 +18,7 @@
"automountmapname": [
"auto.home"
],
- "dn": "automountmapname=auto.home,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "automountmapname=auto.home,cn=bos,cn=automount,dc=example,dc=com",
"objectclass": [
"automountmap",
"top"
@@ -28,7 +28,7 @@
"automountmapname": [
"auto.log"
],
- "dn": "automountmapname=auto.log,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "automountmapname=auto.log,cn=bos,cn=automount,dc=example,dc=com",
"objectclass": [
"automountmap",
"top"
@@ -38,7 +38,7 @@
"automountmapname": [
"auto.master"
],
- "dn": "automountmapname=auto.master,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "automountmapname=auto.master,cn=bos,cn=automount,dc=example,dc=com",
"objectclass": [
"automountmap",
"top"
diff --git a/install/ui/test/data/automountmap_find_pkeys.json b/install/ui/test/data/automountmap_find_pkeys.json
index 5a6321aaa..89b4245be 100644
--- a/install/ui/test/data/automountmap_find_pkeys.json
+++ b/install/ui/test/data/automountmap_find_pkeys.json
@@ -8,25 +8,25 @@
"automountmapname": [
"auto.direct"
],
- "dn": "automountmapname=auto.direct,cn=bos,cn=automount,dc=dev,dc=example,dc=com"
+ "dn": "automountmapname=auto.direct,cn=bos,cn=automount,dc=example,dc=com"
},
{
"automountmapname": [
"auto.home"
],
- "dn": "automountmapname=auto.home,cn=bos,cn=automount,dc=dev,dc=example,dc=com"
+ "dn": "automountmapname=auto.home,cn=bos,cn=automount,dc=example,dc=com"
},
{
"automountmapname": [
"auto.log"
],
- "dn": "automountmapname=auto.log,cn=bos,cn=automount,dc=dev,dc=example,dc=com"
+ "dn": "automountmapname=auto.log,cn=bos,cn=automount,dc=example,dc=com"
},
{
"automountmapname": [
"auto.master"
],
- "dn": "automountmapname=auto.master,cn=bos,cn=automount,dc=dev,dc=example,dc=com"
+ "dn": "automountmapname=auto.master,cn=bos,cn=automount,dc=example,dc=com"
}
],
"summary": null,
diff --git a/install/ui/test/data/automountmap_get_records.json b/install/ui/test/data/automountmap_get_records.json
index 0e9079e5c..96730c801 100644
--- a/install/ui/test/data/automountmap_get_records.json
+++ b/install/ui/test/data/automountmap_get_records.json
@@ -10,7 +10,7 @@
"automountmapname": [
"auto.direct"
],
- "dn": "automountmapname=auto.direct,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "automountmapname=auto.direct,cn=bos,cn=automount,dc=example,dc=com",
"objectclass": [
"automountmap",
"top"
@@ -25,7 +25,7 @@
"automountmapname": [
"auto.home"
],
- "dn": "automountmapname=auto.home,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "automountmapname=auto.home,cn=bos,cn=automount,dc=example,dc=com",
"objectclass": [
"automountmap",
"top"
@@ -40,7 +40,7 @@
"automountmapname": [
"auto.log"
],
- "dn": "automountmapname=auto.log,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "automountmapname=auto.log,cn=bos,cn=automount,dc=example,dc=com",
"objectclass": [
"automountmap",
"top"
@@ -55,7 +55,7 @@
"automountmapname": [
"auto.master"
],
- "dn": "automountmapname=auto.master,cn=bos,cn=automount,dc=dev,dc=example,dc=com",
+ "dn": "automountmapname=auto.master,cn=bos,cn=automount,dc=example,dc=com",
"objectclass": [
"automountmap",
"top"
diff --git a/install/ui/test/data/cert_request.json b/install/ui/test/data/cert_request.json
index c4410729a..127183a87 100644
--- a/install/ui/test/data/cert_request.json
+++ b/install/ui/test/data/cert_request.json
@@ -4,12 +4,12 @@
"result": {
"result": {
"certificate": "MIICAjCCAWugAwIBAgICBAswDQYJKoZIhvcNAQEFBQAwKTEnMCUGA1UEAxMeSVBBIFRlc3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB4XDTEwMTAwNzIzMzk0NFoXDTE1MTAwNzIzMzk0NFowKDEMMAoGA1UECgwDSVBBMRgwFgYDVQQDDA9kZXYuZXhhbXBsZS5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOTXyj8grVB7Rj95RFawgdwn9OYZ03LWHZ+HMYggu2/xCCrUrdThP14YBlVqZumjVJSclj6T4ACjjdPJq9JTTmx7gMizDTReus7IPlS6fCxb5v5whQJZsEksXL04OxUMl25euPRFkYcTK1rdW47+AkG10j1qeNW+B6CpdQGR6eM/AgMBAAGjOjA4MBEGCWCGSAGG+EIBAQQEAwIGQDATBgNVHSUEDDAKBggrBgEFBQcDATAOBgNVHQ8BAf8EBAMCBPAwDQYJKoZIhvcNAQEFBQADgYEASIhq723VL5xP0q51MYXFlGU1boD7pPD1pIQspD/MjCIEupcbH2kAo4wf+EiKsXR0rs+WZkaSgvFqaM4OQ2kWSFTiqmFXFDBEi6EFr68yLg7IpQpNTzVBXERd8B4GwNL9wrRw60jPXlUK29DPBsdGq8fDgX18l39wKkWXv7p1to4=",
- "issuer": "CN=Certificate Authority,O=IPA",
+ "issuer": "CN=Certificate Authority,O=EXAMPLE.COM",
"md5_fingerprint": "08:86:a9:f9:87:af:0d:d7:42:01:e0:5f:12:9b:32:7f",
"request_id": "1",
"serial_number": "1",
"sha1_fingerprint": "b8:4c:4b:79:4f:13:03:79:47:08:fa:6b:52:63:3d:f9:15:8e:7e:dc",
- "subject": "CN=dev.example.com,O=IPA",
+ "subject": "CN=dev.example.com,O=EXAMPLE.COM",
"valid_not_after": "Tue Oct 13 01:59:32 2015 UTC",
"valid_not_before": "Wed Oct 13 01:59:32 2010 UTC"
}
diff --git a/install/ui/test/data/cert_show.json b/install/ui/test/data/cert_show.json
index 71d895f05..3e8a8ab76 100644
--- a/install/ui/test/data/cert_show.json
+++ b/install/ui/test/data/cert_show.json
@@ -4,11 +4,11 @@
"result": {
"result": {
"certificate": "MIICAjCCAWugAwIBAgICBAswDQYJKoZIhvcNAQEFBQAwKTEnMCUGA1UEAxMeSVBBIFRlc3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB4XDTEwMTAwNzIzMzk0NFoXDTE1MTAwNzIzMzk0NFowKDEMMAoGA1UECgwDSVBBMRgwFgYDVQQDDA9kZXYuZXhhbXBsZS5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOTXyj8grVB7Rj95RFawgdwn9OYZ03LWHZ+HMYggu2/xCCrUrdThP14YBlVqZumjVJSclj6T4ACjjdPJq9JTTmx7gMizDTReus7IPlS6fCxb5v5whQJZsEksXL04OxUMl25euPRFkYcTK1rdW47+AkG10j1qeNW+B6CpdQGR6eM/AgMBAAGjOjA4MBEGCWCGSAGG+EIBAQQEAwIGQDATBgNVHSUEDDAKBggrBgEFBQcDATAOBgNVHQ8BAf8EBAMCBPAwDQYJKoZIhvcNAQEFBQADgYEASIhq723VL5xP0q51MYXFlGU1boD7pPD1pIQspD/MjCIEupcbH2kAo4wf+EiKsXR0rs+WZkaSgvFqaM4OQ2kWSFTiqmFXFDBEi6EFr68yLg7IpQpNTzVBXERd8B4GwNL9wrRw60jPXlUK29DPBsdGq8fDgX18l39wKkWXv7p1to4=",
- "issuer": "CN=Certificate Authority,O=IPA",
+ "issuer": "CN=Certificate Authority,O=EXAMPLE.COM",
"md5_fingerprint": "08:86:a9:f9:87:af:0d:d7:42:01:e0:5f:12:9b:32:7f",
"serial_number": "1",
"sha1_fingerprint": "b8:4c:4b:79:4f:13:03:79:47:08:fa:6b:52:63:3d:f9:15:8e:7e:dc",
- "subject": "CN=dev.example.com,O=IPA",
+ "subject": "CN=dev.example.com,O=EXAMPLE.COM",
"valid_not_after": "Tue Oct 13 01:59:32 2015 UTC",
"valid_not_before": "Wed Oct 13 01:59:32 2010 UTC"
}
diff --git a/install/ui/test/data/config_show.json b/install/ui/test/data/config_show.json
index dd4485c3e..1b6d59418 100644
--- a/install/ui/test/data/config_show.json
+++ b/install/ui/test/data/config_show.json
@@ -28,9 +28,9 @@
"cn": [
"ipaConfig"
],
- "dn": "cn=ipaconfig,cn=etc,dc=dev,dc=example,dc=com",
+ "dn": "cn=ipaconfig,cn=etc,dc=example,dc=com",
"ipacertificatesubjectbase": [
- "O=DEV.EXAMPLE.COM"
+ "O=EXAMPLE.COM"
],
"ipaconfigstring": [
"AllowNThash"
diff --git a/install/ui/test/data/dnsrecord_add.json b/install/ui/test/data/dnsrecord_add.json
index 7cbf570da..d34cb3fd0 100644
--- a/install/ui/test/data/dnsrecord_add.json
+++ b/install/ui/test/data/dnsrecord_add.json
@@ -6,7 +6,7 @@
"arecord": [
"1.2.3.4"
],
- "dn": "idnsname=a4,idnsname=dev.example.com,cn=dns,dc=example,dc=com",
+ "dn": "idnsname=a4,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"a4"
],
diff --git a/install/ui/test/data/dnsrecord_find.json b/install/ui/test/data/dnsrecord_find.json
index 8ca2283d8..663d630aa 100644
--- a/install/ui/test/data/dnsrecord_find.json
+++ b/install/ui/test/data/dnsrecord_find.json
@@ -5,7 +5,7 @@
"count": 12,
"result": [
{
- "dn": "idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"@"
],
@@ -14,16 +14,16 @@
]
},
{
- "dn": "idnsname=_kerberos,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos"
],
"txtrecord": [
- "DEV.EXAMPLE.COM"
+ "EXAMPLE.COM"
]
},
{
- "dn": "idnsname=_kerberos-master._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos-master._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos-master._tcp"
],
@@ -32,7 +32,7 @@
]
},
{
- "dn": "idnsname=_kerberos-master._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos-master._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos-master._udp"
],
@@ -41,7 +41,7 @@
]
},
{
- "dn": "idnsname=_kerberos._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos._tcp"
],
@@ -50,7 +50,7 @@
]
},
{
- "dn": "idnsname=_kerberos._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos._udp"
],
@@ -59,7 +59,7 @@
]
},
{
- "dn": "idnsname=_kpasswd._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kpasswd._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kpasswd._tcp"
],
@@ -68,7 +68,7 @@
]
},
{
- "dn": "idnsname=_kpasswd._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kpasswd._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kpasswd._udp"
],
@@ -77,7 +77,7 @@
]
},
{
- "dn": "idnsname=_ldap._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_ldap._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_ldap._tcp"
],
@@ -86,7 +86,7 @@
]
},
{
- "dn": "idnsname=_ntp._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_ntp._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_ntp._udp"
],
@@ -98,7 +98,7 @@
"aaaarecord": [
"fec0::5054:ff:feb5:5a47"
],
- "dn": "idnsname=dev,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=dev,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"dev"
]
@@ -114,7 +114,7 @@
"1.3.5.7",
"10.10.2.1"
],
- "dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"testrec"
],
diff --git a/install/ui/test/data/dnsrecord_find_pkeys.json b/install/ui/test/data/dnsrecord_find_pkeys.json
index aec4c9093..777f3bfb7 100644
--- a/install/ui/test/data/dnsrecord_find_pkeys.json
+++ b/install/ui/test/data/dnsrecord_find_pkeys.json
@@ -5,73 +5,73 @@
"count": 12,
"result": [
{
- "dn": "idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"@"
]
},
{
- "dn": "idnsname=_kerberos,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos"
]
},
{
- "dn": "idnsname=_kerberos-master._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos-master._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos-master._tcp"
]
},
{
- "dn": "idnsname=_kerberos-master._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos-master._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos-master._udp"
]
},
{
- "dn": "idnsname=_kerberos._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos._tcp"
]
},
{
- "dn": "idnsname=_kerberos._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos._udp"
]
},
{
- "dn": "idnsname=_kpasswd._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kpasswd._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kpasswd._tcp"
]
},
{
- "dn": "idnsname=_kpasswd._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kpasswd._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kpasswd._udp"
]
},
{
- "dn": "idnsname=_ldap._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_ldap._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_ldap._tcp"
]
},
{
- "dn": "idnsname=_ntp._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_ntp._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_ntp._udp"
]
},
{
- "dn": "idnsname=dev,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=dev,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"dev"
]
},
{
- "dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"testrec"
]
diff --git a/install/ui/test/data/dnsrecord_get_records.json b/install/ui/test/data/dnsrecord_get_records.json
index d2dd03e01..0415c1f71 100644
--- a/install/ui/test/data/dnsrecord_get_records.json
+++ b/install/ui/test/data/dnsrecord_get_records.json
@@ -7,7 +7,7 @@
{
"error": null,
"result": {
- "dn": "idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"@"
],
@@ -21,12 +21,12 @@
{
"error": null,
"result": {
- "dn": "idnsname=_kerberos,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos"
],
"txtrecord": [
- "DEV.EXAMPLE.COM"
+ "EXAMPLE.COM"
]
},
"summary": null,
@@ -35,7 +35,7 @@
{
"error": null,
"result": {
- "dn": "idnsname=_kerberos-master._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos-master._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos-master._tcp"
],
@@ -49,7 +49,7 @@
{
"error": null,
"result": {
- "dn": "idnsname=_kerberos-master._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos-master._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos-master._udp"
],
@@ -63,7 +63,7 @@
{
"error": null,
"result": {
- "dn": "idnsname=_kerberos._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos._tcp"
],
@@ -77,7 +77,7 @@
{
"error": null,
"result": {
- "dn": "idnsname=_kerberos._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kerberos._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kerberos._udp"
],
@@ -91,7 +91,7 @@
{
"error": null,
"result": {
- "dn": "idnsname=_kpasswd._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kpasswd._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kpasswd._tcp"
],
@@ -105,7 +105,7 @@
{
"error": null,
"result": {
- "dn": "idnsname=_kpasswd._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_kpasswd._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_kpasswd._udp"
],
@@ -119,7 +119,7 @@
{
"error": null,
"result": {
- "dn": "idnsname=_ldap._tcp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_ldap._tcp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_ldap._tcp"
],
@@ -133,7 +133,7 @@
{
"error": null,
"result": {
- "dn": "idnsname=_ntp._udp,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=_ntp._udp,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"_ntp._udp"
],
@@ -150,7 +150,7 @@
"aaaarecord": [
"fec0::5054:ff:feb5:5a47"
],
- "dn": "idnsname=dev,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=dev,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"dev"
]
@@ -171,7 +171,7 @@
"1.3.5.7",
"10.10.2.1"
],
- "dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"testrec"
],
diff --git a/install/ui/test/data/dnsrecord_show.json b/install/ui/test/data/dnsrecord_show.json
index d15ef5398..3e3d5f8b4 100644
--- a/install/ui/test/data/dnsrecord_show.json
+++ b/install/ui/test/data/dnsrecord_show.json
@@ -48,7 +48,7 @@
"sshfprecord": "rscwo",
"txtrecord": "rscwo"
},
- "dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=dev,dc=example,dc=com",
+ "dn": "idnsname=testrec,idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"testrec"
],
diff --git a/install/ui/test/data/dnszone_add.json b/install/ui/test/data/dnszone_add.json
index 3cb833056..a47e7e614 100644
--- a/install/ui/test/data/dnszone_add.json
+++ b/install/ui/test/data/dnszone_add.json
@@ -3,12 +3,12 @@
"id": 3,
"result": {
"result": {
- "dn": "idnsname=dev.example.com,cn=dns,dc=example,dc=com",
+ "dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsallowdynupdate": [
"FALSE"
],
"idnsname": [
- "dev.example.com"
+ "example.com"
],
"idnssoaexpire": [
"1209600"
@@ -26,7 +26,7 @@
"900"
],
"idnssoarname": [
- "root.dev.example.com."
+ "root.example.com."
],
"idnssoaserial": [
"2010021201"
@@ -41,6 +41,6 @@
]
},
"summary": null,
- "value": "dev.example.com"
+ "value": "example.com"
}
}
\ No newline at end of file
diff --git a/install/ui/test/data/dnszone_find.json b/install/ui/test/data/dnszone_find.json
index fdf2c8e40..7477d6167 100644
--- a/install/ui/test/data/dnszone_find.json
+++ b/install/ui/test/data/dnszone_find.json
@@ -2,8 +2,52 @@
"error": null,
"id": 6,
"result": {
- "count": 3,
+ "count": 2,
"result": [
+ {
+ "dn": "idnsname=1.168.192.in-addr.arpa,cn=dns,dc=example,dc=com",
+ "idnsallowdynupdate": [
+ "TRUE"
+ ],
+ "idnsname": [
+ "1.168.192.in-addr.arpa"
+ ],
+ "idnssoaexpire": [
+ "1209600"
+ ],
+ "idnssoaminimum": [
+ "3600"
+ ],
+ "idnssoamname": [
+ "dev.example.com."
+ ],
+ "idnssoarefresh": [
+ "3600"
+ ],
+ "idnssoaretry": [
+ "900"
+ ],
+ "idnssoarname": [
+ "root.1.168.192.in-addr.arpa."
+ ],
+ "idnssoaserial": [
+ "2010021201"
+ ],
+ "idnsupdatepolicy": [
+ "grant EXAMPLE.COM krb5-subdomain 1.168.192.in-addr.arpa. PTR;"
+ ],
+ "idnszoneactive": [
+ "TRUE"
+ ],
+ "nsrecord": [
+ "dev.example.com."
+ ],
+ "objectclass": [
+ "top",
+ "idnsrecord",
+ "idnszone"
+ ]
+ },
{
"dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsallowdynupdate": [
@@ -19,95 +63,7 @@
"3600"
],
"idnssoamname": [
- "ipa.example.com."
- ],
- "idnssoarefresh": [
- "3600"
- ],
- "idnssoaretry": [
- "900"
- ],
- "idnssoarname": [
- "root.ipa.example.com."
- ],
- "idnssoaserial": [
- "2010021201"
- ],
- "idnsupdatepolicy": [
- "grant EXAMPLE.COM krb5-self * A;"
- ],
- "idnszoneactive": [
- "TRUE"
- ],
- "nsrecord": [
- "ipa.example.com."
- ],
- "objectclass": [
- "top",
- "idnsrecord",
- "idnszone"
- ]
- },
- {
- "dn": "idnsname=122.168.192.in-addr.arpa,cn=dns,dc=example,dc=com",
- "idnsallowdynupdate": [
- "TRUE"
- ],
- "idnsname": [
- "122.168.192.in-addr.arpa"
- ],
- "idnssoaexpire": [
- "1209600"
- ],
- "idnssoaminimum": [
- "3600"
- ],
- "idnssoamname": [
- "ipa.example.com."
- ],
- "idnssoarefresh": [
- "3600"
- ],
- "idnssoaretry": [
- "900"
- ],
- "idnssoarname": [
- "root.122.168.192.in-addr.arpa."
- ],
- "idnssoaserial": [
- "2010021201"
- ],
- "idnsupdatepolicy": [
- "grant EXAMPLE.COM krb5-subdomain 122.168.192.in-addr.arpa. PTR;"
- ],
- "idnszoneactive": [
- "TRUE"
- ],
- "nsrecord": [
- "ipa.example.com."
- ],
- "objectclass": [
- "top",
- "idnsrecord",
- "idnszone"
- ]
- },
- {
- "dn": "idnsname=dev.example.com,cn=dns,dc=example,dc=com",
- "idnsallowdynupdate": [
- "FALSE"
- ],
- "idnsname": [
- "dev.example.com"
- ],
- "idnssoaexpire": [
- "1209600"
- ],
- "idnssoaminimum": [
- "3600"
- ],
- "idnssoamname": [
- "example.com"
+ "dev.example.com."
],
"idnssoarefresh": [
"3600"
@@ -121,9 +77,15 @@
"idnssoaserial": [
"2010021201"
],
+ "idnsupdatepolicy": [
+ "grant EXAMPLE.COM krb5-self * A;"
+ ],
"idnszoneactive": [
"TRUE"
],
+ "nsrecord": [
+ "dev.example.com."
+ ],
"objectclass": [
"top",
"idnsrecord",
diff --git a/install/ui/test/data/dnszone_find_pkeys.json b/install/ui/test/data/dnszone_find_pkeys.json
index 1b4f02500..f40636f43 100644
--- a/install/ui/test/data/dnszone_find_pkeys.json
+++ b/install/ui/test/data/dnszone_find_pkeys.json
@@ -2,25 +2,19 @@
"error": null,
"id": 6,
"result": {
- "count": 3,
+ "count": 2,
"result": [
+ {
+ "dn": "idnsname=1.168.192.in-addr.arpa,cn=dns,dc=example,dc=com",
+ "idnsname": [
+ "1.168.192.in-addr.arpa"
+ ]
+ },
{
"dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsname": [
"example.com"
]
- },
- {
- "dn": "idnsname=122.168.192.in-addr.arpa,cn=dns,dc=example,dc=com",
- "idnsname": [
- "122.168.192.in-addr.arpa"
- ]
- },
- {
- "dn": "idnsname=dev.example.com,cn=dns,dc=example,dc=com",
- "idnsname": [
- "dev.example.com"
- ]
}
],
"summary": null,
diff --git a/install/ui/test/data/dnszone_get_records.json b/install/ui/test/data/dnszone_get_records.json
index 07b70734d..2e14716ce 100644
--- a/install/ui/test/data/dnszone_get_records.json
+++ b/install/ui/test/data/dnszone_get_records.json
@@ -2,8 +2,57 @@
"error": null,
"id": 6,
"result": {
- "count": 3,
+ "count": 2,
"results": [
+ {
+ "error": null,
+ "result": {
+ "dn": "idnsname=1.168.192.in-addr.arpa,cn=dns,dc=example,dc=com",
+ "idnsallowdynupdate": [
+ "TRUE"
+ ],
+ "idnsname": [
+ "1.168.192.in-addr.arpa"
+ ],
+ "idnssoaexpire": [
+ "1209600"
+ ],
+ "idnssoaminimum": [
+ "3600"
+ ],
+ "idnssoamname": [
+ "dev.example.com."
+ ],
+ "idnssoarefresh": [
+ "3600"
+ ],
+ "idnssoaretry": [
+ "900"
+ ],
+ "idnssoarname": [
+ "root.1.168.192.in-addr.arpa."
+ ],
+ "idnssoaserial": [
+ "2010021201"
+ ],
+ "idnsupdatepolicy": [
+ "grant EXAMPLE.COM krb5-subdomain 1.168.192.in-addr.arpa. PTR;"
+ ],
+ "idnszoneactive": [
+ "TRUE"
+ ],
+ "nsrecord": [
+ "dev.example.com."
+ ],
+ "objectclass": [
+ "top",
+ "idnsrecord",
+ "idnszone"
+ ]
+ },
+ "summary": null,
+ "value": "1.168.192.in-addr.arpa"
+ },
{
"error": null,
"result": {
@@ -21,105 +70,7 @@
"3600"
],
"idnssoamname": [
- "ipa.example.com."
- ],
- "idnssoarefresh": [
- "3600"
- ],
- "idnssoaretry": [
- "900"
- ],
- "idnssoarname": [
- "root.ipa.example.com."
- ],
- "idnssoaserial": [
- "2010021201"
- ],
- "idnsupdatepolicy": [
- "grant EXAMPLE.COM krb5-self * A;"
- ],
- "idnszoneactive": [
- "TRUE"
- ],
- "nsrecord": [
- "ipa.example.com."
- ],
- "objectclass": [
- "top",
- "idnsrecord",
- "idnszone"
- ]
- },
- "summary": null,
- "value": "example.com"
- },
- {
- "error": null,
- "result": {
- "dn": "idnsname=122.168.192.in-addr.arpa,cn=dns,dc=example,dc=com",
- "idnsallowdynupdate": [
- "TRUE"
- ],
- "idnsname": [
- "122.168.192.in-addr.arpa"
- ],
- "idnssoaexpire": [
- "1209600"
- ],
- "idnssoaminimum": [
- "3600"
- ],
- "idnssoamname": [
- "ipa.example.com."
- ],
- "idnssoarefresh": [
- "3600"
- ],
- "idnssoaretry": [
- "900"
- ],
- "idnssoarname": [
- "root.122.168.192.in-addr.arpa."
- ],
- "idnssoaserial": [
- "2010021201"
- ],
- "idnsupdatepolicy": [
- "grant EXAMPLE.COM krb5-subdomain 122.168.192.in-addr.arpa. PTR;"
- ],
- "idnszoneactive": [
- "TRUE"
- ],
- "nsrecord": [
- "ipa.example.com."
- ],
- "objectclass": [
- "top",
- "idnsrecord",
- "idnszone"
- ]
- },
- "summary": null,
- "value": "122.168.192.in-addr.arpa"
- },
- {
- "error": null,
- "result": {
- "dn": "idnsname=dev.example.com,cn=dns,dc=example,dc=com",
- "idnsallowdynupdate": [
- "FALSE"
- ],
- "idnsname": [
- "dev.example.com"
- ],
- "idnssoaexpire": [
- "1209600"
- ],
- "idnssoaminimum": [
- "3600"
- ],
- "idnssoamname": [
- "example.com"
+ "dev.example.com."
],
"idnssoarefresh": [
"3600"
@@ -133,9 +84,15 @@
"idnssoaserial": [
"2010021201"
],
+ "idnsupdatepolicy": [
+ "grant EXAMPLE.COM krb5-self * A;"
+ ],
"idnszoneactive": [
"TRUE"
],
+ "nsrecord": [
+ "dev.example.com."
+ ],
"objectclass": [
"top",
"idnsrecord",
@@ -143,7 +100,7 @@
]
},
"summary": null,
- "value": "dev.example.com"
+ "value": "example.com"
}
]
}
diff --git a/install/ui/test/data/dnszone_show.json b/install/ui/test/data/dnszone_show.json
index afad93c45..b7d5b87b2 100644
--- a/install/ui/test/data/dnszone_show.json
+++ b/install/ui/test/data/dnszone_show.json
@@ -47,12 +47,12 @@
"sshfprecord": "rscwo",
"txtrecord": "rscwo"
},
- "dn": "idnsname=dev.example.com,cn=dns,dc=example,dc=com",
+ "dn": "idnsname=example.com,cn=dns,dc=example,dc=com",
"idnsallowdynupdate": [
"FALSE"
],
"idnsname": [
- "dev.example.com"
+ "example.com"
],
"idnssoaexpire": [
"1209600"
@@ -70,7 +70,7 @@
"900"
],
"idnssoarname": [
- "root.dev.example.com."
+ "root.example.com."
],
"idnssoaserial": [
"2010021201"
@@ -85,6 +85,6 @@
]
},
"summary": null,
- "value": "dev.example.com"
+ "value": "example.com"
}
}
\ No newline at end of file
diff --git a/install/ui/test/data/group_find.json b/install/ui/test/data/group_find.json
index fe40e254a..6df265044 100644
--- a/install/ui/test/data/group_find.json
+++ b/install/ui/test/data/group_find.json
@@ -11,7 +11,7 @@
"description": [
"Account administrators group"
],
- "dn": "cn=admins,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "cn=admins,cn=groups,cn=accounts,dc=example,dc=com",
"gidnumber": [
"1420800000"
],
@@ -26,7 +26,7 @@
"description": [
"Default group for all users"
],
- "dn": "cn=ipausers,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "cn=ipausers,cn=groups,cn=accounts,dc=example,dc=com",
"gidnumber": [
"1420800001"
],
@@ -46,7 +46,7 @@
"description": [
"Limited admins who can edit other users"
],
- "dn": "cn=editors,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "cn=editors,cn=groups,cn=accounts,dc=example,dc=com",
"gidnumber": [
"1420800002"
]
@@ -58,7 +58,7 @@
"description": [
"Monsters on Sesame Street"
],
- "dn": "cn=monsters,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "cn=monsters,cn=groups,cn=accounts,dc=example,dc=com",
"gidnumber": [
"1420800009"
]
@@ -70,7 +70,7 @@
"description": [
"Muppets moonlighting for CTW"
],
- "dn": "cn=muppets,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "cn=muppets,cn=groups,cn=accounts,dc=example,dc=com",
"gidnumber": [
"1420800010"
]
diff --git a/install/ui/test/data/group_find_pkeys.json b/install/ui/test/data/group_find_pkeys.json
index 483751bfe..90acc1282 100644
--- a/install/ui/test/data/group_find_pkeys.json
+++ b/install/ui/test/data/group_find_pkeys.json
@@ -8,31 +8,31 @@
"cn": [
"admins"
],
- "dn": "cn=admins,cn=groups,cn=accounts,dc=dev,dc=example,dc=com"
+ "dn": "cn=admins,cn=groups,cn=accounts,dc=example,dc=com"
},
{
"cn": [
"ipausers"
],
- "dn": "cn=ipausers,cn=groups,cn=accounts,dc=dev,dc=example,dc=com"
+ "dn": "cn=ipausers,cn=groups,cn=accounts,dc=example,dc=com"
},
{
"cn": [
"editors"
],
- "dn": "cn=editors,cn=groups,cn=accounts,dc=dev,dc=example,dc=com"
+ "dn": "cn=editors,cn=groups,cn=accounts,dc=example,dc=com"
},
{
"cn": [
"monsters"
],
- "dn": "cn=monsters,cn=groups,cn=accounts,dc=dev,dc=example,dc=com"
+ "dn": "cn=monsters,cn=groups,cn=accounts,dc=example,dc=com"
},
{
"cn": [
"muppets"
],
- "dn": "cn=muppets,cn=groups,cn=accounts,dc=dev,dc=example,dc=com"
+ "dn": "cn=muppets,cn=groups,cn=accounts,dc=example,dc=com"
}
],
"summary": "5 groups matched",
diff --git a/install/ui/test/data/group_get_records.json b/install/ui/test/data/group_get_records.json
index d40b4f2a3..dd4ca26f8 100644
--- a/install/ui/test/data/group_get_records.json
+++ b/install/ui/test/data/group_get_records.json
@@ -13,7 +13,7 @@
"description": [
"Account administrators group"
],
- "dn": "cn=admins,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "cn=admins,cn=groups,cn=accounts,dc=example,dc=com",
"gidnumber": [
"1420800000"
],
@@ -33,7 +33,7 @@
"description": [
"Default group for all users"
],
- "dn": "cn=ipausers,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "cn=ipausers,cn=groups,cn=accounts,dc=example,dc=com",
"gidnumber": [
"1420800001"
],
@@ -58,7 +58,7 @@
"description": [
"Limited admins who can edit other users"
],
- "dn": "cn=editors,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "cn=editors,cn=groups,cn=accounts,dc=example,dc=com",
"gidnumber": [
"1420800002"
]
@@ -75,7 +75,7 @@
"description": [
"Monsters on Sesame Street"
],
- "dn": "cn=monsters,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "cn=monsters,cn=groups,cn=accounts,dc=example,dc=com",
"gidnumber": [
"1420800009"
]
@@ -92,7 +92,7 @@
"description": [
"Muppets moonlighting for CTW"
],
- "dn": "cn=muppets,cn=groups,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "cn=muppets,cn=groups,cn=accounts,dc=example,dc=com",
"gidnumber": [
"1420800010"
]
diff --git a/install/ui/test/data/hbacrule_add.json b/install/ui/test/data/hbacrule_add.json
index 2a5d251bf..47c32869c 100644
--- a/install/ui/test/data/hbacrule_add.json
+++ b/install/ui/test/data/hbacrule_add.json
@@ -9,7 +9,7 @@
"cn": [
"test"
],
- "dn": "ipauniqueid=f3e69e82-e3b411df-bfde9b13-2b28c216,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "ipauniqueid=f3e69e82-e3b411df-bfde9b13-2b28c216,cn=hbac,dc=example,dc=com",
"ipaenabledflag": [
"TRUE"
],
diff --git a/install/ui/test/data/hbacrule_add_host.json b/install/ui/test/data/hbacrule_add_host.json
index 038d6aea4..2de87eaf3 100644
--- a/install/ui/test/data/hbacrule_add_host.json
+++ b/install/ui/test/data/hbacrule_add_host.json
@@ -20,7 +20,7 @@
"cn": [
"test"
],
- "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
"ipaenabledflag": [
"TRUE"
],
diff --git a/install/ui/test/data/hbacrule_add_service.json b/install/ui/test/data/hbacrule_add_service.json
index c658fe8b5..e6ad13933 100644
--- a/install/ui/test/data/hbacrule_add_service.json
+++ b/install/ui/test/data/hbacrule_add_service.json
@@ -20,7 +20,7 @@
"cn": [
"test"
],
- "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
"ipaenabledflag": [
"TRUE"
],
diff --git a/install/ui/test/data/hbacrule_add_sourcehost.json b/install/ui/test/data/hbacrule_add_sourcehost.json
index a657207f5..1c165b39a 100644
--- a/install/ui/test/data/hbacrule_add_sourcehost.json
+++ b/install/ui/test/data/hbacrule_add_sourcehost.json
@@ -20,7 +20,7 @@
"cn": [
"test"
],
- "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
"ipaenabledflag": [
"TRUE"
],
diff --git a/install/ui/test/data/hbacrule_add_user.json b/install/ui/test/data/hbacrule_add_user.json
index 0c4c976e4..35b30a115 100644
--- a/install/ui/test/data/hbacrule_add_user.json
+++ b/install/ui/test/data/hbacrule_add_user.json
@@ -20,7 +20,7 @@
"cn": [
"test"
],
- "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
"ipaenabledflag": [
"TRUE"
],
diff --git a/install/ui/test/data/hbacrule_find.json b/install/ui/test/data/hbacrule_find.json
index 0629e3827..e3e15b9d7 100644
--- a/install/ui/test/data/hbacrule_find.json
+++ b/install/ui/test/data/hbacrule_find.json
@@ -14,7 +14,7 @@
"description": [
"Allow all users to access any host from any host"
],
- "dn": "ipauniqueid=ca842a42-a445-11e0-87ff-525400b55a47,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "ipauniqueid=ca842a42-a445-11e0-87ff-525400b55a47,cn=hbac,dc=example,dc=com",
"hostcategory": [
"all"
],
diff --git a/install/ui/test/data/hbacrule_remove_host.json b/install/ui/test/data/hbacrule_remove_host.json
index 02f56ecd6..e1f10f35b 100644
--- a/install/ui/test/data/hbacrule_remove_host.json
+++ b/install/ui/test/data/hbacrule_remove_host.json
@@ -20,7 +20,7 @@
"cn": [
"test"
],
- "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
"ipaenabledflag": [
"TRUE"
],
diff --git a/install/ui/test/data/hbacrule_remove_service.json b/install/ui/test/data/hbacrule_remove_service.json
index f8b6b51a5..86a7ff165 100644
--- a/install/ui/test/data/hbacrule_remove_service.json
+++ b/install/ui/test/data/hbacrule_remove_service.json
@@ -20,7 +20,7 @@
"cn": [
"test"
],
- "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
"ipaenabledflag": [
"TRUE"
],
diff --git a/install/ui/test/data/hbacrule_remove_sourcehost.json b/install/ui/test/data/hbacrule_remove_sourcehost.json
index da32f76e0..9b62f42e4 100644
--- a/install/ui/test/data/hbacrule_remove_sourcehost.json
+++ b/install/ui/test/data/hbacrule_remove_sourcehost.json
@@ -20,7 +20,7 @@
"cn": [
"test"
],
- "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
"ipaenabledflag": [
"TRUE"
],
diff --git a/install/ui/test/data/hbacrule_remove_user.json b/install/ui/test/data/hbacrule_remove_user.json
index f25317e83..721158a83 100644
--- a/install/ui/test/data/hbacrule_remove_user.json
+++ b/install/ui/test/data/hbacrule_remove_user.json
@@ -20,7 +20,7 @@
"cn": [
"test"
],
- "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "ipauniqueid=e8aca082-e64a11df-9864f2e0-e0578392,cn=hbac,dc=example,dc=com",
"ipaenabledflag": [
"TRUE"
],
diff --git a/install/ui/test/data/hbacrule_show.json b/install/ui/test/data/hbacrule_show.json
index df4dcd783..394a043c8 100644
--- a/install/ui/test/data/hbacrule_show.json
+++ b/install/ui/test/data/hbacrule_show.json
@@ -32,7 +32,7 @@
"cn": [
"rule1"
],
- "dn": "ipauniqueid=4ed8b682-edf511df-b3f78f4b-11cc007b,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "ipauniqueid=4ed8b682-edf511df-b3f78f4b-11cc007b,cn=hbac,dc=example,dc=com",
"ipaenabledflag": [
"TRUE"
],
diff --git a/install/ui/test/data/hbacsvc_add.json b/install/ui/test/data/hbacsvc_add.json
index 87eb51d78..b0b3cbdfe 100644
--- a/install/ui/test/data/hbacsvc_add.json
+++ b/install/ui/test/data/hbacsvc_add.json
@@ -9,7 +9,7 @@
"description": [
"Test Service"
],
- "dn": "cn=test,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "cn=test,cn=hbacservices,cn=hbac,dc=example,dc=com",
"ipauniqueid": [
"c3302e82-ecfd11df-b3f78f4b-11cc007b"
],
diff --git a/install/ui/test/data/hbacsvc_find.json b/install/ui/test/data/hbacsvc_find.json
index 86a9bcaa5..41055be40 100644
--- a/install/ui/test/data/hbacsvc_find.json
+++ b/install/ui/test/data/hbacsvc_find.json
@@ -11,7 +11,7 @@
"description": [
"sshd"
],
- "dn": "cn=sshd,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=sshd,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
@@ -20,7 +20,7 @@
"description": [
"ftp"
],
- "dn": "cn=ftp,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=ftp,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
@@ -29,7 +29,7 @@
"description": [
"su"
],
- "dn": "cn=su,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=su,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
@@ -38,7 +38,7 @@
"description": [
"login"
],
- "dn": "cn=login,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=login,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
@@ -47,7 +47,7 @@
"description": [
"su with login shell"
],
- "dn": "cn=su-l,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=su-l,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
@@ -56,7 +56,7 @@
"description": [
"sudo"
],
- "dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
@@ -65,7 +65,7 @@
"description": [
"sudo-i"
],
- "dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
@@ -74,7 +74,7 @@
"description": [
"gdm"
],
- "dn": "cn=gdm,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=gdm,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
@@ -83,7 +83,7 @@
"description": [
"gdm-password"
],
- "dn": "cn=gdm-password,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=gdm-password,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
@@ -92,7 +92,7 @@
"description": [
"kdm"
],
- "dn": "cn=kdm,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=kdm,cn=hbacservices,cn=hbac,dc=example,dc=com"
}
],
"summary": null,
diff --git a/install/ui/test/data/hbacsvc_find_pkeys.json b/install/ui/test/data/hbacsvc_find_pkeys.json
index 01939d2ce..f06a7b08c 100644
--- a/install/ui/test/data/hbacsvc_find_pkeys.json
+++ b/install/ui/test/data/hbacsvc_find_pkeys.json
@@ -8,61 +8,61 @@
"cn": [
"sshd"
],
- "dn": "cn=sshd,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=sshd,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
"ftp"
],
- "dn": "cn=ftp,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=ftp,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
"su"
],
- "dn": "cn=su,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=su,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
"login"
],
- "dn": "cn=login,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=login,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
"su-l"
],
- "dn": "cn=su-l,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=su-l,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
"sudo"
],
- "dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
"sudo-i"
],
- "dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
"gdm"
],
- "dn": "cn=gdm,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=gdm,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
"gdm-password"
],
- "dn": "cn=gdm-password,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=gdm-password,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
{
"cn": [
"kdm"
],
- "dn": "cn=kdm,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=kdm,cn=hbacservices,cn=hbac,dc=example,dc=com"
}
],
"summary": null,
diff --git a/install/ui/test/data/hbacsvc_get_records.json b/install/ui/test/data/hbacsvc_get_records.json
index fd8af3056..8ffb5d877 100644
--- a/install/ui/test/data/hbacsvc_get_records.json
+++ b/install/ui/test/data/hbacsvc_get_records.json
@@ -13,7 +13,7 @@
"description": [
"sshd"
],
- "dn": "cn=sshd,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=sshd,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
"summary": null,
"value": "sshd"
@@ -27,7 +27,7 @@
"description": [
"ftp"
],
- "dn": "cn=ftp,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=ftp,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
"summary": null,
"value": "ftp"
@@ -41,7 +41,7 @@
"description": [
"su"
],
- "dn": "cn=su,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=su,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
"summary": null,
"value": "su"
@@ -55,7 +55,7 @@
"description": [
"login"
],
- "dn": "cn=login,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=login,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
"summary": null,
"value": "login"
@@ -69,7 +69,7 @@
"description": [
"su with login shell"
],
- "dn": "cn=su-l,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=su-l,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
"summary": null,
"value": "su-l"
@@ -83,7 +83,7 @@
"description": [
"sudo"
],
- "dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
"summary": null,
"value": "sudo"
@@ -97,7 +97,7 @@
"description": [
"sudo-i"
],
- "dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
"summary": null,
"value": "sudo-i"
@@ -111,7 +111,7 @@
"description": [
"gdm"
],
- "dn": "cn=gdm,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=gdm,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
"summary": null,
"value": "gdm"
@@ -125,7 +125,7 @@
"description": [
"gdm-password"
],
- "dn": "cn=gdm-password,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=gdm-password,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
"summary": null,
"value": "gdm-password"
@@ -139,7 +139,7 @@
"description": [
"kdm"
],
- "dn": "cn=kdm,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=kdm,cn=hbacservices,cn=hbac,dc=example,dc=com"
},
"summary": null,
"value": "kdm"
diff --git a/install/ui/test/data/hbacsvc_show.json b/install/ui/test/data/hbacsvc_show.json
index 749d5da95..92e68f324 100644
--- a/install/ui/test/data/hbacsvc_show.json
+++ b/install/ui/test/data/hbacsvc_show.json
@@ -17,12 +17,12 @@
"description": [
"sudo"
],
- "dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=example,dc=com",
"ipauniqueid": [
"676e92a1-ec7611df-b3f78f4b-11cc007b"
],
"memberof": [
- "cn=Sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com"
+ "cn=Sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com"
],
"objectclass": [
"ipahbacservice",
diff --git a/install/ui/test/data/hbacsvcgroup_add.json b/install/ui/test/data/hbacsvcgroup_add.json
index 0dd1e96fe..0a6bd5e2f 100644
--- a/install/ui/test/data/hbacsvcgroup_add.json
+++ b/install/ui/test/data/hbacsvcgroup_add.json
@@ -9,7 +9,7 @@
"description": [
"Test Service Group"
],
- "dn": "cn=test,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "cn=test,cn=hbacservicegroups,cn=hbac,dc=example,dc=com",
"ipauniqueid": [
"0ab6ba82-ecfe11df-b3f78f4b-11cc007b"
],
diff --git a/install/ui/test/data/hbacsvcgroup_add_member.json b/install/ui/test/data/hbacsvcgroup_add_member.json
index 8526e1848..82059f5a1 100644
--- a/install/ui/test/data/hbacsvcgroup_add_member.json
+++ b/install/ui/test/data/hbacsvcgroup_add_member.json
@@ -15,7 +15,7 @@
"description": [
"Test Service Group"
],
- "dn": "cn=test,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "cn=test,cn=hbacservicegroups,cn=hbac,dc=example,dc=com",
"member_hbacsvc": [
"test"
]
diff --git a/install/ui/test/data/hbacsvcgroup_find.json b/install/ui/test/data/hbacsvcgroup_find.json
index 503bfa379..38dcf630b 100644
--- a/install/ui/test/data/hbacsvcgroup_find.json
+++ b/install/ui/test/data/hbacsvcgroup_find.json
@@ -11,7 +11,7 @@
"description": [
"Default group of Sudo related services"
],
- "dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com",
"member_hbacsvc": [
"sudo",
"sudo-i"
diff --git a/install/ui/test/data/hbacsvcgroup_find_pkeys.json b/install/ui/test/data/hbacsvcgroup_find_pkeys.json
index fdca25658..44b3630fe 100644
--- a/install/ui/test/data/hbacsvcgroup_find_pkeys.json
+++ b/install/ui/test/data/hbacsvcgroup_find_pkeys.json
@@ -8,7 +8,7 @@
"cn": [
"Sudo"
],
- "dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com"
}
],
"summary": "1 group matched",
diff --git a/install/ui/test/data/hbacsvcgroup_get_records.json b/install/ui/test/data/hbacsvcgroup_get_records.json
index 1d9a62f83..64844c1dd 100644
--- a/install/ui/test/data/hbacsvcgroup_get_records.json
+++ b/install/ui/test/data/hbacsvcgroup_get_records.json
@@ -13,7 +13,7 @@
"description": [
"Default group of Sudo related services"
],
- "dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com",
"member_hbacsvc": [
"sudo",
"sudo-i"
diff --git a/install/ui/test/data/hbacsvcgroup_member_hbacsvc.json b/install/ui/test/data/hbacsvcgroup_member_hbacsvc.json
index b2332f5a9..81ce98b33 100644
--- a/install/ui/test/data/hbacsvcgroup_member_hbacsvc.json
+++ b/install/ui/test/data/hbacsvcgroup_member_hbacsvc.json
@@ -13,12 +13,12 @@
"description": [
"sudo"
],
- "dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "cn=sudo,cn=hbacservices,cn=hbac,dc=example,dc=com",
"ipauniqueid": [
"42927a86-f46d-11df-8cc1-00163e72f2d9"
],
"memberof": [
- "cn=Sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com"
+ "cn=Sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com"
],
"objectclass": [
"ipahbacservice",
@@ -37,12 +37,12 @@
"description": [
"sudo-i"
],
- "dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "cn=sudo-i,cn=hbacservices,cn=hbac,dc=example,dc=com",
"ipauniqueid": [
"42970a6a-f46d-11df-8cc1-00163e72f2d9"
],
"memberof": [
- "cn=Sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com"
+ "cn=Sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com"
],
"objectclass": [
"ipahbacservice",
diff --git a/install/ui/test/data/hbacsvcgroup_remove_member.json b/install/ui/test/data/hbacsvcgroup_remove_member.json
index cdf413789..fe017c6d6 100644
--- a/install/ui/test/data/hbacsvcgroup_remove_member.json
+++ b/install/ui/test/data/hbacsvcgroup_remove_member.json
@@ -15,7 +15,7 @@
"description": [
"Test Service Group"
],
- "dn": "cn=test,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com"
+ "dn": "cn=test,cn=hbacservicegroups,cn=hbac,dc=example,dc=com"
}
}
}
diff --git a/install/ui/test/data/hbacsvcgroup_show.json b/install/ui/test/data/hbacsvcgroup_show.json
index 05ba55ba5..b9464df2d 100644
--- a/install/ui/test/data/hbacsvcgroup_show.json
+++ b/install/ui/test/data/hbacsvcgroup_show.json
@@ -24,7 +24,7 @@
"description": [
"Default group of Sudo related services"
],
- "dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=dev,dc=example,dc=com",
+ "dn": "cn=sudo,cn=hbacservicegroups,cn=hbac,dc=example,dc=com",
"ipauniqueid": [
"676e92ab-ec7611df-b3f78f4b-11cc007b"
],
diff --git a/install/ui/test/data/host_mod.json b/install/ui/test/data/host_mod.json
index 2e34257e8..7a0b36c25 100644
--- a/install/ui/test/data/host_mod.json
+++ b/install/ui/test/data/host_mod.json
@@ -52,10 +52,10 @@
"ac28dca0-f3b5-11df-879f-00163e72f2d9"
],
"krbprincipalname": [
- "host/test.example.com@DEV.EXAMPLE.COM"
+ "host/test.example.com@EXAMPLE.COM"
],
"managedby": [
- "fqdn=test.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com"
+ "fqdn=test.example.com,cn=computers,cn=accounts,dc=example,dc=com"
],
"objectclass": [
"ipaobject",
diff --git a/install/ui/test/data/host_show.json b/install/ui/test/data/host_show.json
index b87802310..6edb060a2 100644
--- a/install/ui/test/data/host_show.json
+++ b/install/ui/test/data/host_show.json
@@ -46,7 +46,7 @@
"cn": [
"test.example.com"
],
- "dn": "fqdn=test.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "fqdn=test.example.com,cn=computers,cn=accounts,dc=example,dc=com",
"fqdn": [
"test.example.com"
],
@@ -55,10 +55,10 @@
"ac28dca0-f3b5-11df-879f-00163e72f2d9"
],
"krbprincipalname": [
- "host/test.example.com@DEV.EXAMPLE.COM"
+ "host/test.example.com@EXAMPLE.COM"
],
"managedby": [
- "fqdn=test.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com"
+ "fqdn=test.example.com,cn=computers,cn=accounts,dc=example,dc=com"
],
"objectclass": [
"ipaobject",
diff --git a/install/ui/test/data/host_show_dev.example.com.json b/install/ui/test/data/host_show_dev.example.com.json
index 1ee9f445f..5547160b7 100644
--- a/install/ui/test/data/host_show_dev.example.com.json
+++ b/install/ui/test/data/host_show_dev.example.com.json
@@ -46,7 +46,7 @@
"cn": [
"dev.example.com"
],
- "dn": "fqdn=dev.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "fqdn=dev.example.com,cn=computers,cn=accounts,dc=example,dc=com",
"fqdn": [
"dev.example.com"
],
@@ -69,13 +69,13 @@
"19700101000000Z"
],
"krbprincipalname": [
- "host/dev.example.com@DEV.EXAMPLE.COM"
+ "host/dev.example.com@EXAMPLE.COM"
],
"krbticketflags": [
"0"
],
"managedby": [
- "fqdn=dev.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com"
+ "fqdn=dev.example.com,cn=computers,cn=accounts,dc=example,dc=com"
],
"objectclass": [
"top",
diff --git a/install/ui/test/data/host_show_test.example.com.json b/install/ui/test/data/host_show_test.example.com.json
index b87802310..6edb060a2 100644
--- a/install/ui/test/data/host_show_test.example.com.json
+++ b/install/ui/test/data/host_show_test.example.com.json
@@ -46,7 +46,7 @@
"cn": [
"test.example.com"
],
- "dn": "fqdn=test.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "fqdn=test.example.com,cn=computers,cn=accounts,dc=example,dc=com",
"fqdn": [
"test.example.com"
],
@@ -55,10 +55,10 @@
"ac28dca0-f3b5-11df-879f-00163e72f2d9"
],
"krbprincipalname": [
- "host/test.example.com@DEV.EXAMPLE.COM"
+ "host/test.example.com@EXAMPLE.COM"
],
"managedby": [
- "fqdn=test.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com"
+ "fqdn=test.example.com,cn=computers,cn=accounts,dc=example,dc=com"
],
"objectclass": [
"ipaobject",
diff --git a/install/ui/test/data/hostgroup_member_host.json b/install/ui/test/data/hostgroup_member_host.json
index c4c7dfa98..e91ddf5ee 100644
--- a/install/ui/test/data/hostgroup_member_host.json
+++ b/install/ui/test/data/hostgroup_member_host.json
@@ -13,7 +13,7 @@
"description": [
"Development"
],
- "dn": "fqdn=dev.example.com,cn=computers,cn=accounts,dc=dev,dc=example,dc=com",
+ "dn": "fqdn=dev.example.com,cn=computers,cn=accounts,dc=example,dc=com",
"fqdn": [
"dev.example.com"
],
@@ -36,7 +36,7 @@
"19700101000000Z"
],
"krbprincipalname": [
- "host/dev.example.com@DEV.EXAMPLE.COM"
+ "host/dev.example.com@EXAMPLE.COM"
],
"krbticketflags": [
"0"
diff --git a/install/ui/test/data/ipa_init.json b/install/ui/test/data/ipa_init.json
index 5e9d2eb0f..99b461aac 100644
--- a/install/ui/test/data/ipa_init.json
+++ b/install/ui/test/data/ipa_init.json
@@ -128,7 +128,6 @@
"certificate_hold": "Certificate Hold",
"cessation_of_operation": "Cessation of Operation",
"common_name": "Common Name",
- "enter_csr": "Enter the Base64-encoded CSR below",
"expires_on": "Expires On",
"fingerprints": "Fingerprints",
"issue_certificate": "Issue New Certificate for ${entity} ${primary_key}",
@@ -145,6 +144,7 @@
"privilege_withdrawn": "Privilege Withdrawn",
"reason": "Reason for Revocation",
"remove_from_crl": "Remove from CRL",
+ "request_message": "