Skip to content

Puppet type and provider for Windows User Rights Assignment

License

Notifications You must be signed in to change notification settings

camptocamp/puppet-ura

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

User Rights Assignments

Puppet Forge Version Puppet Forge Downloads Build Status Coverage Status

Usage

user_right { 'seincreasequotaprivilege':
  ensure => present,
  sid    => ['CORP\domain', 'CORP\entadmin'],
}

Split

Add users to right from different contexts:

user_right { 'seincreasequotaprivilege':
  ensure => present,
}

user_right_assignment { 'seincreasequotaprivilege for admins':
  right  => 'seincreasequotaprivilege',
  sid    => ['CORP\domain', 'CORP\entadmin'],
}

user_right_assignment { 'another right':
  right  => 'seincreasequotaprivilege',
  sid    => ['CORP\domain', 'CORP\entadmin'],
}

Ensure absence

user_right { 'seincreasequotaprivilege':
  ensure => absent,
}

About

Puppet type and provider for Windows User Rights Assignment

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages