Forge Home

partitionaccesspath

This module creates a partition and mounts it to an accesspath on Windows.

5,225 downloads

5,093 latest version

4.5 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.1.1 (latest)
  • 0.1.0
released Mar 1st 2018
This version is compatible with:

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'witsec-partitionaccesspath', '0.1.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add witsec-partitionaccesspath
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install witsec-partitionaccesspath --version 0.1.1

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

witsec/partitionaccesspath — version 0.1.1 Mar 1st 2018

partitionaccesspath

Table of Contents

  1. Description
  2. Setup - The basics of getting started with partitionaccesspath
  3. Usage - Configuration options and additional functionality
  4. Reference - An under-the-hood peek at what the module is doing and how
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module

Overview

This module creates a partition and mounts it to an accesspath on Windows.

Module Description

This module introduces a small defined type partitionaccesspath. It shrinks an existing partition and then creates a new (raw or formatted) partition, which gets mounted to an accesspath. It is only supported on Windows.

Setup

Setup Requirements

  • partitionaccesspath makes use of Powershell, you'll need at least version 4.0 installed in order to use this module. This is available from Windows 2012 R2 and beyond.

Beginning with partitionaccesspath

To create a new partition and mount it automatically:

partitionaccesspath { 'Data':
  driveletter => 'D',
  size        => '3GB',
  accesspath  => 'C:\Storage\Data',
  filesystem  => 'ntfs',
}

Reference

Defined Types

  • partitionaccesspath: Create a partition and mount it to an accesspath

Parameters

driveletter

This is the driveletter of the partition that will be shrunk with size.

size

The desired size of the partition. The acceptable values for this parameter are: Bytes, KB, MB, GB, or TB.

accesspath

The path on which the new partition needs to be mounted.

filesystem

Filesystem can either be 'raw', 'ntfs' or 'fat32'. After the new partition is created, it will be formatted to the filesystem that is set in the manifest.
If filesystem is omitted or set to raw (which is the default value), it will skip this step and leave the partition as is - raw.

Limitations

This module is tested on the following platforms:

  • Windows 2012 R2
  • Windows 2016

It is tested with Puppet EE only.