Commits on Mar 26, 2019

  1. Merge pull request #308 from puppetlabs/release

    (MODULES-8761) Mergeback from 2.5.0 Release
    RandomNoun7 authored Mar 26, 2019
    Configuration menu
    Copy the full SHA
    8dbb169 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2019

  1. (MAINT) add support for 2019 to test helpers

    Erick Banks committed Mar 29, 2019
    Configuration menu
    Copy the full SHA
    429374b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #310 from ThoughtCrhyme/MAINT

    (MAINT) add support for 2019 to test helpers
    michaeltlombardi authored Mar 29, 2019
    Configuration menu
    Copy the full SHA
    ee247ce View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2019

  1. Configuration menu
    Copy the full SHA
    b99f957 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2019

  1. Merge pull request #311 from ThoughtCrhyme/MODULES-6582

    (MODULES-6582) Add ability to test against sql server 2017
    RandomNoun7 authored Apr 12, 2019
    Configuration menu
    Copy the full SHA
    4607e81 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2019

  1. (MODULES-7553) Add Example Clarification

    A user trying to follow our advanced example ran into an issue. The
    example as written is only suitable for setups that are using local
    accounts, not domain accounts. They also found that the Facter fact
    `domain` returns the FQDN of the domain, which is not suitable for
    contsructing user names in the `netbiosname\username` format.
    
    This change adds a clarification to the example that the example is only
    usable when using local group, and given that there is no `netbiosname`
    fact available, provides a suggestion for one way to work around the
    issue.
    RandomNoun7 committed May 17, 2019
    Configuration menu
    Copy the full SHA
    c6577ca View commit details
    Browse the repository at this point in the history
  2. (MODULES-7553) Add Example Clarification (#312)

    (MODULES-7553) Add Example Clarification
    michaeltlombardi authored May 17, 2019
    Configuration menu
    Copy the full SHA
    6f04ba6 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2019

  1. (MODULES-8600) add DQC to sqlserver_features

    tphoney committed May 22, 2019
    Configuration menu
    Copy the full SHA
    f8b0faa View commit details
    Browse the repository at this point in the history
  2. Merge pull request #313 from tphoney/MODULES-8600

    (MODULES-8600) add DQC to sqlserver_features
    RandomNoun7 authored May 22, 2019
    Configuration menu
    Copy the full SHA
    693c254 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2019

  1. (MODULES-8439) Fix sqlserver_instances custom fact

      Prior to this commit, when a registry key in HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\Instance Names was missing the key about the current version the custom fact sqlserver_instances would throw an error message similar to this: 2019-01-06 14:55:09 -0500 Facter (err): error while resolving custom fact "sqlserver_instances": Failed to open registry key 'HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\MSRS11.@SharePoint\MSSQLServer\CurrentVersion': The system cannot find the file specified.
    
      This commit adds a check before trying to open the version information registry key.
    Daniel Carabas committed May 30, 2019
    Configuration menu
    Copy the full SHA
    046369b View commit details
    Browse the repository at this point in the history
  2. (MODULES-8439) Fix sqlserver_instances custom fact (#314)

    (MODULES-8439) Fix sqlserver_instances custom fact
    michaeltlombardi authored May 30, 2019
    Configuration menu
    Copy the full SHA
    d5b7731 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2019

  1. (MODULES-6904) Restart SQL Server Service with Dependent Services

    Prviously, the sp_configure.pp file would attempt to use the builtin
    service resource to restart the MSSQLServer service if a configuration
    change was made. This attempt would fail if there was a dependent
    service such as the SQL Agent service, which is extremely common.
    
    This change implements an extremely small PowerShell script instead to
    force restart the MSSQLSERVER service, even if there are dependent
    services.
    
    In testing this resulted in the Agent service going down and then
    coming back up as expected.
    RandomNoun7 committed Jun 10, 2019
    Configuration menu
    Copy the full SHA
    35bb1a7 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2019

  1. Merge pull request #315 from RandomNoun7/tickets/MODULES-6904-restart…

    …-service
    
    (MODULES-6904) Restart SQL Server Service with Dependent Services
    James Pogran authored Jun 26, 2019
    Configuration menu
    Copy the full SHA
    efc1c27 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2019

  1. (MODULES-9472) Fix Issues Link

    The issues link points at an area in Jira that no longer exists. This
    change fixes it to point at a more generic place that will allow users
    to createa a ticket.
    RandomNoun7 committed Jun 30, 2019
    Configuration menu
    Copy the full SHA
    697ec2d View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2019

  1. Merge pull request #317 from RandomNoun7/tickets/MODULES-9472-fix-iss…

    …ues-link
    
    (MODULES-9472) Fix Issues Link
    eimlav authored Jul 1, 2019
    Configuration menu
    Copy the full SHA
    17f1fb9 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2019

  1. MODULES-9383 - Align windows module SQLServer to core module structur…

    …e and process
    
    This commit adds the following alignement elements:
    - Remove Puppet 4 support
    - Run pdk update
    - Fully enable rubocop
    - Add Puppet Strings
    Daniel Carabas committed Jul 18, 2019
    Configuration menu
    Copy the full SHA
    3e88c74 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2019

  1. MODULES-9383 - Align windows module SQLServer to core modules (#318)

    MODULES-9383 - Align windows module SQLServer to core modules
    michaeltlombardi authored Jul 22, 2019
    Configuration menu
    Copy the full SHA
    669132d View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2019

  1. (MODULES-9912) ERB Template Errors

    Prior to this change, some ERB templates would cause jruby errors
    on the master during catalog compilation. The templates contained code
    that would attempt to modify the value of a frozen string.
    
    This change modifies the template code to ensure that no frozen string
    values are attempted to be modified.
    
    It also makes slight fixes to the syntax in the templates to ensure that
    each instance of this pattern is written more consistantly.
    RandomNoun7 committed Sep 16, 2019
    Configuration menu
    Copy the full SHA
    0f52ec7 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2019

  1. Merge pull request #320 from RandomNoun7/tickets/MODULES-9912-fix-tem…

    …plate-frozen-string-error
    
    (MODULES-9912) ERB Template Errors
    glennsarti authored Sep 17, 2019
    Configuration menu
    Copy the full SHA
    bad8ab5 View commit details
    Browse the repository at this point in the history
  2. (maint) Add a codeowners file

    tphoney committed Sep 17, 2019
    Configuration menu
    Copy the full SHA
    12ae9ed View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2019

  1. Merge pull request #322 from puppetlabs/pdksync_add_codeowners

    (maint) Add a codeowners file
    sheenaajay authored Sep 18, 2019
    Configuration menu
    Copy the full SHA
    0061f9f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d757f35 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #324 from sheenaajay/releaseprepnew

    (MODULES-9918) ReleasePrep v2.5.1
    tphoney authored Sep 18, 2019
    Configuration menu
    Copy the full SHA
    fbcbbb6 View commit details
    Browse the repository at this point in the history