-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v2.0.0 - PuppetForge - Merge pull request #6 from virtualdesk…
…topdevops/dev Release v2.0.0 - PuppetForge
- Loading branch information
Showing
13 changed files
with
546 additions
and
342 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pkg/ |
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,5 @@ | ||
pkg/ | ||
tests/ | ||
assets/ | ||
_config.yml | ||
.fixtures.yml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Changelog - xd7deliverycontroller # | ||
|
||
## Version 2.0.0 ## | ||
- **BREAKING CHANGE** : Merged **xd7mastercontroller** and **xd7slavecontroller** into **xd7deliverycontroller**. Added a **role** parameter to install a **primary** controller with XenDesktop site creation or a **secondary** controller joined to an existing XenDesktop site. | ||
- **BREAKING CHANGE** : Require virtualdesktopdevops/dsc >= 1.5.0 (puppetlabs/dsc fork compiled with XenDesktop7 DSC resource) | ||
- **BREAKING CHANGE** : Removed unneeded $domainNetbiosName parameter. | ||
- **BREAKING CHANGE** : Migrated puppet example code in README.md to future parser syntax (4.x). Impact on parameters refering to remote locations (file shares) which have to be prefixed with \\\\ instead of the classical \\. This is because of Puppet >= 4.x parsing \\ as a single \ in single-quoted strings. Use parser = future in puppet 3.x /etc/puppet/puppet.conf to use this new configuration in your Puppet 3.x and prepare Puppet 4.x migration. | ||
- **BREAKING CHANGE** : Changed all module parameters to lowercase to comply with puppet guidelines. | ||
- **BREAKING CHANGE** : Removed SQLServer Powershell resource from the module. Added **sqlservermodulesource** and **sqlservermodulesourcepath** parameters to install is from the internet or from an enterprise file share. | ||
- Compliance with puppet language style guide and puppet forge standards. | ||
- Class parameters data types. | ||
|
||
|
||
|
||
## Version 1.1.0 ## | ||
- Initial release | ||
- Module compatible with xSQLServer <= 9.0.0.0 |
Binary file not shown.
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,17 @@ | ||
#https://puppet.com/blog/starting-out-writing-custom-facts-windows | ||
Facter.add('credsspclientgpo') do | ||
confine :osfamily => :windows | ||
setcode do | ||
begin | ||
result=false | ||
value = nil | ||
Win32::Registry::HKEY_LOCAL_MACHINE.open('SOFTWARE\Policies\Microsoft\Windows\WinRM\Client') do |regkey| | ||
value = regkey['AllowCredSSP'] | ||
result=true | ||
end | ||
result | ||
rescue | ||
false | ||
end | ||
end | ||
end |
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,17 @@ | ||
#https://puppet.com/blog/starting-out-writing-custom-facts-windows | ||
Facter.add('credsspservicegpo') do | ||
confine :osfamily => :windows | ||
setcode do | ||
begin | ||
result=false | ||
value = nil | ||
Win32::Registry::HKEY_LOCAL_MACHINE.open('SOFTWARE\Policies\Microsoft\Windows\WinRM\Service') do |regkey| | ||
value = regkey['AllowCredSSP'] | ||
result=true | ||
end | ||
result | ||
rescue | ||
false | ||
end | ||
end | ||
end |
Oops, something went wrong.