Showing with 38 additions and 17 deletions.
  1. +16 −1 CHANGELOG.md
  2. +14 −5 README.md
  3. +8 −11 metadata.json
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
##2015-09-01 - 0.1.0
## 2017-06-14 - 1.0.0

### Summary

Major release for updated puppet version compatibility.

#### Bug fixes

- Updated module dependencies for modern PowerShell module ([MODULES-5045](https://tickets.puppetlabs.com/browse/MODULES-5045)).
- Updated puppet version compatibility for modern Puppet agents ([MODULES-4820](https://tickets.puppetlabs.com/browse/MODULES-4820)).


## 2015-09-01 - 0.1.0

### Summary

Initial release
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
# mount_iso

#### Table of Contents
## Table of Contents

1. [Overview](#overview)

2. [Module Description - Mount ISO Images on Windows 8+ / 2012+](#module-description)

3. [Setup - The basics of getting started with mount_iso](#setup)

* [What mount_iso affects](#what-mount_iso-affects)

4. [Usage - Configuration options and additional functionality](#usage)

5. [Reference - An under-the-hood peek at what the module is doing and how](#reference)
5. [Limitations - OS compatibility, etc.](#limitations)

6. [Limitations - OS compatibility, etc.](#limitations)

## Overview

Expand All @@ -27,7 +33,8 @@ Requires PowerShell which is installed by default for any newer versions of Wind
## Usage

### To mount the SQLServer.iso on drive letter 'H'
```

``` puppet
mount_iso { 'C:\MyStagingDir\SQLServer.iso':
drive_letter => 'H',
}
Expand All @@ -40,11 +47,13 @@ mount_iso { 'C:\MyStagingDir\SQLServer.iso':
### Defined Types

#### mount_iso

* `source`: The location of the ISO or image that you would like mounted: Defaults to title

* `drive_letter`: The desired drive letter you want the image to mounted against

## Limitations

* Only works on Windows 2012, 2012 R2, 8 and 8.1
* If the drive is already occupied by some other volume it will fail to mount the image in that location but will allow it to
be mounted on the first available drive letter.

* If the drive is already occupied by some other volume it will fail to mount the image in that location but will allow it to be mounted on the first available drive letter.
19 changes: 8 additions & 11 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs/mount_iso",
"version": "0.1.0",
"version": "1.0.0",
"author": "Puppet Labs",
"summary": "Mount ISO images and ensure the drive letter they are mounted to",
"license": "Apache-2.0",
Expand All @@ -17,29 +17,26 @@
{
"operatingsystem": "Windows",
"operatingsystemrelease": [
"Server 2008 R2",
"Server 2012",
"Server 2012 R2"
"Server 2012 R2",
"8",
"10"
]
}
],
"requirements": [
{
"name": "pe",
"version_requirement": ">= 3.3.0 < 2015.3.0"
},
{
"name": "puppet",
"version_requirement": ">= 3.4.0 < 5.0.0"
"version_requirement": ">= 4.7.0 < 5.0.0"
}
],
"dependencies": [
{
"name": "puppetlabs-stdlib",
"version_requirement": "4.x"
"name": "puppetlabs-stdlib"
},
{
"name": "puppetlabs-powershell",
"version_requirement": "1.x"
"name": "puppetlabs-powershell"
}
]
}
Expand Down