-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SqlInstall: New resource #1912
base: main
Are you sure you want to change the base?
SqlInstall: New resource #1912
Conversation
|
||
This example shows how to call the resource using Invoke-DscResource. | ||
#> | ||
[DscResource(RunAsCredential = 'Optional')] |
Check failure
Code scanning / PSScriptAnalyzer
The DSC resource 'SqlInstall' must have at least one key property (using the syntax [DscProperty(Key)].) Error
|
||
This example shows how to call the resource using Invoke-DscResource. | ||
#> | ||
[DscResource(RunAsCredential = 'Optional')] |
Check failure
Code scanning / PSScriptAnalyzer
The DSC resource 'SqlInstall' is missing a Test method that returns [bool] and accepts no parameters. Error
ServerName = $this.ServerName | ||
} | ||
|
||
$serverObject = $this.GetServerObject() |
Check warning
Code scanning / PSScriptAnalyzer
The variable 'currentInstalledServiceNames' is assigned but never used. Warning
a value. | ||
#> | ||
hidden [void] AssertProperties([System.Collections.Hashtable] $properties) | ||
{ |
Check warning
Code scanning / PSScriptAnalyzer
Empty End block. Warning
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #1912 +/- ##
=====================================
- Coverage 94% 89% -5%
=====================================
Files 93 119 +26
Lines 7844 8285 +441
=====================================
+ Hits 7424 7438 +14
- Misses 420 847 +427
|
419de3c
to
8088506
Compare
Labeling this pull request (PR) as abandoned since it has gone 14 days or more since the last update. An abandoned PR can be continued by another contributor. The abandoned label will be removed if work on this PR is taken up again. |
This is a big undertaking creating this resource and at the same time trying to re-invent the logic to be (hopefully) more efficient. But hopefully that will make it quicker to create the other setup action resources. |
Labeling this pull request (PR) as abandoned since it has gone 14 days or more since the last update. An abandoned PR can be continued by another contributor. The abandoned label will be removed if work on this PR is taken up again. |
66de733
to
e0af130
Compare
66de733
to
be3c785
Compare
Labeling this pull request (PR) as abandoned since it has gone 14 days or more since the last update. An abandoned PR can be continued by another contributor. The abandoned label will be removed if work on this PR is taken up again. |
Labeling this pull request (PR) as abandoned since it has gone 14 days or more since the last update. An abandoned PR can be continued by another contributor. The abandoned label will be removed if work on this PR is taken up again. |
I'm gonna try to pick this up again, this is a very complex work, reimagine how Get-function works. |
Labeling this pull request (PR) as abandoned since it has gone 14 days or more since the last update. An abandoned PR can be continued by another contributor. The abandoned label will be removed if work on this PR is taken up again. |
1dac3e7
to
f568f52
Compare
Labeling this pull request (PR) as abandoned since it has gone 14 days or more since the last update. An abandoned PR can be continued by another contributor. The abandoned label will be removed if work on this PR is taken up again. |
Pull Request (PR) description
SqlInstall
- Handles the Microsoft SQL Server setup actionInstall
.This Pull Request (PR) fixes the following issues
Partly helps with #1781 .
Task list
file CHANGELOG.md. Entry should say what was changed and how that
affects users (if applicable), and reference the issue being resolved
(if applicable).
This change is