Skip to content

Commit 98c6e2d

Browse files
committed
feat: reworked complete strcture
1 parent 8e84024 commit 98c6e2d

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.idea/misc.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/Examples/dsc_configuration.ps1 renamed to source/Examples/XOAPModuleTemplateDSC.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
configuration default
1+
configuration XOAPModuleTemplateDSC
22
{
33
param
44
(
55
# Target nodes to apply the configuration
66
[string[]]$NodeName = 'localhost'
77
)
88

9-
Import-Module XOAPAVDOptimizationW11DSC
10-
Import-DSCResource -ModuleName XOAPAVDOptimizationW11DSC
9+
Import-Module XOAPModuleTemplateDSC
10+
Import-DSCResource -ModuleName XOAPModuleTemplateDSC
1111

1212
Node $NodeName
1313
{
1414

15-
$moduleRoot = [io.path]::GetDirectoryName((Get-Module XOAPAVDOptimizationW11DSC).Path)
16-
$examples = "$moduleRoot\Examples"
15+
$moduleRoot = [io.path]::GetDirectoryName((Get-Module XOAPModuleTemplateDSC).Path)
16+
#$examples = "$moduleRoot\Examples"
1717

1818
# Install the IIS role
1919
WindowsFeature IIS

0 commit comments

Comments
 (0)