Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DSR_iSCSIInitiator: Feature/someone24 simplify code layout in initiator and fix Issue #18 #32

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
- Enabled PSSA rule violations to fail build - Fixes [Issue #27](https://github.com/PlagueHO/iSCSIDsc/issues/27).
- Updated tests to meet Pester v4 standard.
- Added Open Code of Conduct.
- Simplify Initiator code layout by moving exposed DSC functions into own files
- Added Module manifest
- Changed Get-WMIObject for Get-CimInstance within DSR_iSCSIServerTarget.psm1. - Fixes [Issue #18](https://github.com/PlagueHO/iSCSIDsc/issues/18)

## 1.5.0.0

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
#
# Module manifest for module 'DSR_iSCSIInitiator'
#
# Generated by: Someone24
#
# Generated on: 03/06/2018
#

@{

# Script module or binary module file associated with this manifest.
RootModule = "$PSScriptRoot\DSR_iSCSIInitiator.psm1"

# Version number of this module.
ModuleVersion = '1.3.0.0'

# ID used to uniquely identify this module
GUID = '434ba23b-ba95-4a0e-bd76-f11e8d9eee31'

# Author of this module
Author = 'PlagueHO'

# Copyright statement for this module
Copyright = '(c) 2018 PlagueHO. All rights reserved.'

# Description of the functionality provided by this module
Description = 'Desired State Configuration resource for the management of iSCSI initiator and target configuration'

# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.1'

# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = 'Get-TargetResource', 'Set-TargetResource', 'Test-TargetResource'

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = ''

# Variables to export from this module
VariablesToExport = ''

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = ''

# DSC resources to export from this module
DscResourcesToExport = 'DSR_iSCSIInitiator'

}

Loading