Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
Checking in Example DSCs directory with a basic nxFile
Browse files Browse the repository at this point in the history
  • Loading branch information
John Kordich authored and John Kordich committed May 9, 2014
1 parent 31bb409 commit 916419e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Providers/Extras/Example DSCs/nxFileExample1.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Configuration nxFileExample1
{
Import-DscResource -Module nx

Node MyLinuxHostname
{
nxFile TestLinuxFile
{
Ensure = "Present"
Type = "File"
Contents = "testing nxFile\n"
DestinationPath = "/tmp/test_linux_file.txt"
}
}
}

nxFileExample1

0 comments on commit 916419e

Please sign in to comment.