93 lines
3.1 KiB
PowerShell
93 lines
3.1 KiB
PowerShell
#!powershell
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
#Requires -Module Ansible.ModuleUtils.Legacy
|
|
|
|
Set-StrictMode -Version 2
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
# FUTURE: consider action wrapper to manage reboots and credential changes
|
|
|
|
Function Ensure-Prereqs {
|
|
$gwf = Get-WindowsFeature AD-Domain-Services
|
|
If($gwf.InstallState -ne "Installed") {
|
|
$result.changed = $true
|
|
|
|
If($check_mode) {
|
|
Exit-Json $result
|
|
}
|
|
$awf = Add-WindowsFeature AD-Domain-Services
|
|
# FUTURE: check if reboot necessary
|
|
}
|
|
}
|
|
|
|
$params = Parse-Args $args -supports_check_mode $true
|
|
$check_mode = Get-AnsibleParam -obj $params -name "_ansible_check_mode" -default $false
|
|
$dns_domain_name = Get-AnsibleParam -obj $params -name "dns_domain_name" -failifempty $true
|
|
$domain_netbios_name = Get-AnsibleParam -obj $params -name "domain_netbios_name"
|
|
$safe_mode_admin_password = Get-AnsibleParam -obj $params -name "safe_mode_password" -failifempty $true
|
|
$database_path = Get-AnsibleParam -obj $params -name "database_path" -type "path"
|
|
$sysvol_path = Get-AnsibleParam -obj $params -name "sysvol_path" -type "path"
|
|
|
|
$forest = $null
|
|
|
|
# FUTURE: support down to Server 2012?
|
|
If([System.Environment]::OSVersion.Version -lt [Version]"6.3.9600.0") {
|
|
Fail-Json -message "win_domain requires Windows Server 2012R2 or higher"
|
|
}
|
|
|
|
$result = @{changed=$false; reboot_required=$false}
|
|
|
|
# FUTURE: any sane way to do the detection under check-mode *without* installing the feature?
|
|
|
|
Ensure-Prereqs
|
|
|
|
Try {
|
|
$forest = Get-ADForest $dns_domain_name -ErrorAction SilentlyContinue
|
|
}
|
|
Catch { }
|
|
|
|
If(-not $forest) {
|
|
$result.changed = $true
|
|
|
|
If(-not $check_mode) {
|
|
$sm_cred = ConvertTo-SecureString $safe_mode_admin_password -AsPlainText -Force
|
|
|
|
$install_forest_args = @{
|
|
DomainName=$dns_domain_name;
|
|
SafeModeAdministratorPassword=$sm_cred;
|
|
Confirm=$false;
|
|
SkipPreChecks=$true;
|
|
InstallDns=$true;
|
|
NoRebootOnCompletion=$true;
|
|
}
|
|
if ($database_path) {
|
|
$install_forest_args.DatabasePath = $database_path
|
|
}
|
|
if ($sysvol_path) {
|
|
$install_forest_args.SysvolPath = $sysvol_path
|
|
}
|
|
if ($domain_netbios_name) {
|
|
$install_forest_args.DomainNetBiosName = $domain_netbios_name
|
|
}
|
|
|
|
$iaf = Install-ADDSForest @install_forest_args
|
|
|
|
$result.reboot_required = $iaf.RebootRequired
|
|
|
|
# The Netlogon service is set to auto start but is not started. This is
|
|
# required for Ansible to connect back to the host and reboot in a
|
|
# later task. Even if this fails Ansible can still connect but only
|
|
# with ansible_winrm_transport=basic so we just display a warning if
|
|
# this fails.
|
|
try {
|
|
Start-Service -Name Netlogon
|
|
} catch {
|
|
Add-Warning -obj $result -message "Failed to start the Netlogon service after promoting the host, Ansible may be unable to connect until the host is manually rebooting: $($_.Exception.Message)"
|
|
}
|
|
}
|
|
}
|
|
|
|
Exit-Json $result
|