Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 936 Bytes

README.md

File metadata and controls

30 lines (24 loc) · 936 Bytes

puppet-windows_common

This module contains a set of types and classes that we have found useful while doing different administration tasks on Microsoft Windows systems.

If you have a manifest that could make others administrator's lives easier and it is not that important to be designed as an independent module, you are welcome to open a pull request!

client::mapped_drive

The define type mapped_drive allows you to map a share folder to a drive letter.

windows_common::client::mapped_drive { 'my-drive':
  ensure       => present,
  drive_letter => 'Z:',
  server       => 'public.host.com',
  share        => 'folder',
}

Contributors