-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #272 from dylanratcliffe/name_to_principal
More Windows mocking!!!
- Loading branch information
Showing
8 changed files
with
106 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
spec/fixtures/controlrepos/windows/site-modules/role/manifests/groups.pp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Class: role::groups | ||
# | ||
# | ||
class role::groups { | ||
group {'Administrators': | ||
members => ['foo'], | ||
} | ||
} |
Empty file.
9 changes: 9 additions & 0 deletions
9
spec/fixtures/controlrepos/windows/site-modules/role/manifests/users.pp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Class: role::users | ||
# | ||
# | ||
class role::users { | ||
user { 'dylan': | ||
ensure => 'present', | ||
groups => ['Administrators'], | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
spec/fixtures/controlrepos/windows/site/role/manifests/groups.pp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Class: role::groups | ||
# | ||
# | ||
class role::groups { | ||
group {'Administrators': | ||
members => ['foo'], | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
spec/fixtures/controlrepos/windows/site/role/manifests/users.pp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Class: role::users | ||
# | ||
# | ||
class role::users { | ||
user { 'dylan': | ||
ensure => 'present', | ||
groups => ['Administrators'], | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters