Puppet Class: active_directory::rsat_dns
- Defined in:
- manifests/rsat_dns.pp
Summary
A class to manage the Remote Server Administration ToolsOverview
active_directory::rsat_dns
A class to manage the Remote Server Administration Tools for DNS Server
include active_directory::rsat_dns
11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'manifests/rsat_dns.pp', line 11
class active_directory::rsat_dns {
if !($facts['os']['family'] == 'windows' and $facts['os']['release']['major'] =~ /2012 R2|2016|2019/) {
fail("This class is for Windows 2012 R2, 2016 and 2019, not ${facts['os']['family']} and ${facts['os']['release']['major']}")
}
dsc_windowsfeature { 'rsat-dns-server':
dsc_ensure => present,
dsc_name => 'RSAT-DNS-Server',
}
}
|