Version information
released Jan 30th 2016
This version is compatible with:
Start using this module
Add this module to your Puppetfile:
mod 'jordan-fileshare', '2.0.4'
Learn more about managing modules with a PuppetfileDocumentation
jordan/fileshare — version 2.0.4 Jan 30th 2016
Overview
A Puppet resource type for managing Windows file shares.
Attributes
name
- Name of the file share (namevar)path
- Path to the shared directorycomment
- An optional commentmaxcon
- Maximum allowed connections. Defaults to 16777216.
Access Control
This module ensures by default that shares allow full control access to everyone. It is expected that you will manage access rights with the puppetlabs/acl
module at a filesystem level.
Usage
fileshare { 'the_file_share':
ensure => present,
path => 'C:\test',
}
With Comment
fileshare { 'the_file_share':
ensure => present,
path => 'C:\test',
comment => 'Optional Comment String Goes Here',
}