Skip to content

rico89/puppet-gpo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GPO

Puppet Forge Version Puppet Forge Downloads Build Status Coverage Status

Usage

gpo { 'windowsupdate::autoupdatecfg::allowmuupdateservice':
  ensure => present,
  value  => '1',
}

Ensure absence

gpo { 'windowsupdate::autoupdatecfg::allowmuupdateservice':
  ensure => absent,     # do not manage
}
gpo { 'windowsupdate::autoupdatecfg::allowmuupdateservice':
  ensure => deleted,    # ensure registry key is deleted
}

Separate namevars

gpo { 'Allow MU Update Service':
  ensure            => present,
  admx_file         => 'WindowsUpdate',
  policy_id         => 'AutoUpdateCfg',
  setting_valuename => 'AllowMUUpdateService',
  value             => '1',
}

Specify scope

gpo { 'User::WordWheel::CustomSearch::InternetExtensionName':
  ensure => present,
  value  => '1',
}

About

Puppet module to manage Windows GPOs

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%