This is an automated email from the ASF dual-hosted git repository.
jfthomps pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/vcl.git
The following commit(s) were added to refs/heads/develop by this push:
new bb45324 VCL-1095 - Move unjoining of Windows VMs from Active
Directory to earlier in the deprovision process
bb45324 is described below
commit bb453245ed8288e12b93a580643ad6b2a2c538e9
Author: Josh Thompson <[email protected]>
AuthorDate: Fri Mar 15 10:39:58 2019 -0400
VCL-1095 - Move unjoining of Windows VMs from Active Directory to earlier
in the deprovision process
addomain.php: modified validateResourceData: removed check for duplicate
Domain DNS Name; ; this allows multiple accounts per domain_dns_name
---
web/.ht-inc/addomain.php | 4 ----
1 file changed, 4 deletions(-)
diff --git a/web/.ht-inc/addomain.php b/web/.ht-inc/addomain.php
index a7259d5..ba38e23 100644
--- a/web/.ht-inc/addomain.php
+++ b/web/.ht-inc/addomain.php
@@ -519,10 +519,6 @@ class ADdomain extends Resource {
$return['error'] = 1;
$errormsg[] = i("An AD domain already exists with this
name.");
}
- elseif($this->checkExistingField('domainDNSName',
$return['domaindnsname'], $return['rscid'])) {
- $return['error'] = 1;
- $errormsg[] = i("An AD domain already exists with this
Domain DNS Name.");
- }
if(! validateUserid($return['owner'])) {
$return['error'] = 1;
$errormsg[] = i("Submitted owner is not valid");