forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated the ISSUE_TEMPLATE to hopefully be more intuitive and easier to use. - Added information to ISSUE_TEMPLATE that issues must be reproducible in SqlServerDsc resource module (if running the older xSQLServer resource module (issue dsccommunity#1036).
- Loading branch information
Showing
2 changed files
with
52 additions
and
9 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 |
---|---|---|
@@ -1,17 +1,55 @@ | ||
<!-- | ||
Your feedback and support is greatly appreciated, thanks for contributing! | ||
Your feedback and support is greatly appreciated, thanks for contributing! | ||
Please prefix the issue title with the resource name, i.e. 'SqlSetup: Short description of my issue' | ||
Please provide the following information regarding your issue (place N/A if the fields that don't apply to your issue): | ||
ISSUE TITLE: | ||
Please prefix the issue title with the resource name, i.e. | ||
'SqlSetup: Short description of my issue' | ||
If you like to contribute more please feel free to read the contributing section at https://github.com/PowerShell/SQLServerDsc#contributing. | ||
ISSUE DESCRIPTION (this template): | ||
Please provide information regarding your issue under each header below. | ||
PLEASE KEEP THE HEADERS. Write N/A under any headers that don't apply to your issue. | ||
You may remove this and the other comments, but again, please keep the headers. | ||
Note: If you are running the old xSQLServer resource module, then please make sure | ||
the problem is reproducible in the new SqlServerDsc resource module. | ||
If you like to contribute more please feel free to read the contributing section | ||
at https://github.com/PowerShell/SQLServerDsc#contributing. | ||
--> | ||
**Details of the scenario you tried and the problem that is occurring:** | ||
#### Details of the scenario you tried and the problem that is occurring | ||
|
||
**The DSC configuration that is using the resource (as detailed as possible):** | ||
#### The DSC configuration that is using the resource (as detailed as possible) | ||
``` | ||
<add configuration here> | ||
``` | ||
|
||
**Version of the Operating System, SQL Server and PowerShell the DSC Target Node is running:** | ||
#### Version of the operating system and PowerShell the target node is running | ||
<!-- | ||
To help with this information, please run this command: | ||
Get-CimInstance -ClassName 'Win32_OperatingSystem' | ft Caption,OSArchitecture,Version,MUILanguages,{$PSVersionTable.PSVersion} | ||
--> | ||
|
||
**What module (SqlServer or SQLPS) and which version of the module the DSC Target Node is running:** | ||
#### SQL Server edition and version the target node is running | ||
<!-- | ||
To help with this information, please run the below commands: | ||
$registryPath = 'HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server' | ||
$sqlInstance = (Get-ItemProperty -Path $registryPath).InstalledInstances | ||
$sqlInstance | ForEach-Object -Process { | ||
**Version of the DSC module you're using, or 'dev' if you're using current dev branch:** | ||
$instanceId = (Get-ItemProperty "$registryPath\Instance Names\SQL").$_ | ||
(Get-ItemProperty "$registryPath\$instanceId\Setup") | fl Edition,Version, Language | ||
} | ||
--> | ||
|
||
#### What SQL Server PowerShell modules, and which version, are present on the target node. | ||
<!-- | ||
To help with this information, please run this command: | ||
Get-Module -Name '*sql*' -ListAvailable | ? Name -ne 'SqlServerDsc' | ft Name,Version,Path | ||
--> | ||
|
||
#### Version of the DSC module you're using, or 'dev' if you're using current dev branch | ||
<!-- | ||
To help with this information, please run this command: | ||
Get-Module -Name 'SqlServerDsc' -ListAvailable | ft Name,Version,Path | ||
--> |
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