Skip to content

Commit fa56426

Browse files
authored
Merge pull request #2 from xoap-io/dev
fix: renamed module
2 parents 5862e93 + dae8525 commit fa56426

File tree

10 files changed

+12
-13
lines changed

10 files changed

+12
-13
lines changed

New-CompositeRessource.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ param (
1717
[Parameter()]
1818
[ValidateNotNullOrEmpty()]
1919
[string]
20-
$Company = "XOSS"
20+
$Company = "XOAP"
2121
)
2222

23-
$globalPrefix = "XOSS"
23+
$globalPrefix = "XOAP"
2424
$curDirectory = Resolve-Path .\
2525
$templatePath = Join-Path $curDirectory "templates"
2626
$rootModulePath = Resolve-Path ..\..\
Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
# XOSSBaselineW2k19DSC
1+
# XOAPBaselineW2k19DSC
22

3-
The XOSSBaselineW2k19DSC PowerShell module provides
3+
The XOAPBaselineW2k19DSC PowerShell module provides
44
DSC resources that can be used to ... (explain what functionality the resources are meant to provide)
55

66
## Installation
77

88
To manually install the module, download the source code and unzip the contents
9-
of the \Modules\XOSSBaselineW2k19DSC directory to the
9+
of the \Modules\XOAPBaselineW2k19DSC directory to the
1010
$env:ProgramFiles\WindowsPowerShell\Modules folder
1111

1212
To install from the PowerShell gallery using PowerShellGet (in PowerShell 5.0)
1313
run the following command:
1414

15-
Find-Module -Name XOSSBaselineW2k19DSC -Repository PSGallery | Install-Module
15+
Find-Module -Name XOAPBaselineW2k19DSC -Repository PSGallery | Install-Module
1616

1717
To confirm installation, run the below command and ensure you see the
18-
XOSSBaselineW2k19DSC DSC resoures available:
18+
XOAPBaselineW2k19DSC DSC resoures available:
1919

20-
Get-DscResource -Module XOSSBaselineW2k19DSC
20+
Get-DscResource -Module XOAPBaselineW2k19DSC
2121

2222
## Usage
2323

2424
Include the following in your DSC configuration
2525

26-
Import-DSCResource -ModuleName XOSSBaselineW2k19DSC
26+
Import-DSCResource -ModuleName XOAPBaselineW2k19DSC
2727

2828
### MyResource
2929

@@ -36,4 +36,3 @@ Include the following in your DSC configuration
3636
The minimum PowerShell version required is 4.0, which ships in Windows 8.1
3737
or Windows Server 2012R2 (or higher versions). The preferred version is
3838
PowerShell 5.0 or higher, which ships with Windows 10 or Windows Server 2016.
39-

templates/composite_resource/plasterManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<plasterManifest
33
schemaVersion="1.0" xmlns="http://www.microsoft.com/schemas/PowerShell/Plaster/v1">
44
<metadata>
@@ -7,7 +7,7 @@
77
<version>1.0.0</version>
88
<title>PowershellDSCResource</title>
99
<description></description>
10-
<author>Benedikt Brauneck</author>
10+
<author>XOAP</author>
1111
<tags></tags>
1212
</metadata>
1313
<parameters>

templates/shared_module/plasterManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<version>1.0.0</version>
88
<title>PowershellDSCModule</title>
99
<description></description>
10-
<author>Benedikt Brauneck</author>
10+
<author>XOAP</author>
1111
<tags></tags>
1212
</metadata>
1313
<parameters>

0 commit comments

Comments
 (0)