Skip to content

Commit

Permalink
xSystemSecurity: Deprecating module (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju authored Mar 13, 2020
1 parent 63ccc00 commit 50e33ba
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Deprecated

- **THIS MODULE HAS BEEN DEPRECATED**. It will no longer be released. Please use
the following modules instead:
- The resource `xIEEsc` have been replaced by `IEEnhancedSecurityConfiguration`
in the module [ComputerManagementDsc](https://github.com/dsccommunity/ComputerManagementDsc).
- The resource `xUac` have been replaced by `UserAccountControl`
in the module [ComputerManagementDsc](https://github.com/dsccommunity/ComputerManagementDsc).
- The resource `xFileSystemAccessRule` have been replaced by `FileSystemAccessRule`
in the module [FileSystemDsc](https://github.com/dsccommunity/FileSystemDsc).

### Fixed

- Fixes issue with importing composite resources ([issue #34](https://github.com/dsccommunity/xSystemSecurity/issues/34)).

## [1.5.0] - 2020-01-29

### Added
Expand Down
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# xSystemSecurity
# **THIS MODULE HAS BEEN DEPRECATED**

It will no longer be released. Please use the following modules instead:

- The resource `xIEEsc` have been replaced by `IEEnhancedSecurityConfiguration`
in the module [ComputerManagementDsc](https://github.com/dsccommunity/ComputerManagementDsc).
- The resource `xUac` have been replaced by `UserAccountControl`
in the module [ComputerManagementDsc](https://github.com/dsccommunity/ComputerManagementDsc).
- The resource `xFileSystemAccessRule` have been replaced by `FileSystemAccessRule`
in the module [FileSystemDsc](https://github.com/dsccommunity/FileSystemDsc).

## xSystemSecurity

[![Build Status](https://dev.azure.com/dsccommunity/xSystemSecurity/_apis/build/status/dsccommunity.xSystemSecurity?branchName=master)](https://dev.azure.com/dsccommunity/xSystemSecurity/_build/latest?definitionId=17&branchName=master)
![Azure DevOps coverage (branch)](https://img.shields.io/azure-devops/coverage/dsccommunity/xSystemSecurity/17/master)
Expand Down
2 changes: 1 addition & 1 deletion source/DSCResources/xIEEsc/xIEEsc.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
Description = 'Enables or Disables IE Enhanced Security Configuration'

# Functions to export from this module
FunctionsToExport = @()
FunctionsToExport = @('xIEESc')

# Cmdlets to export from this module
CmdletsToExport = @()
Expand Down
2 changes: 1 addition & 1 deletion source/DSCResources/xUAC/xUAC.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Copyright = 'Copyright the DSC Community contributors. All rights reserved.'

# Functions to export from this module
FunctionsToExport = @()
FunctionsToExport = @('xUAC')

# Cmdlets to export from this module
CmdletsToExport = @()
Expand Down

0 comments on commit 50e33ba

Please sign in to comment.