-
Notifications
You must be signed in to change notification settings - Fork 150
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
xSslSettings: Resolve casing in name #536
Comments
Fix case for these files.
Prior to this change there was inconsistency in the way files referring to this resource were named. The proper naming convention is `*xSslSettings*` rather than `*xSSLSettings*`. - Fixes dsccommunity#536 - [x] Added an entry to the change log under the Unreleased section of the CHANGELOG.md. Entry should say what was changed and how that affects users (if applicable), and reference the issue being resolved (if applicable). - [x] Resource documentation added/updated in README.md. - [ ] Resource parameter descriptions added/updated in README.md, schema.mof and comment-based help. - [ ] Comment-based help added/updated. - [ ] Localization strings added/updated in all localization files as appropriate. - [x] Examples appropriately added/updated. - [x] Unit tests added/updated. See [DSC Resource Testing Guidelines](https://github.com/PowerShell/DscResources/blob/master/TestsGuidelines.md). - [x] Integration tests added/updated (where possible). See [DSC Resource Testing Guidelines](https://github.com/PowerShell/DscResources/blob/master/TestsGuidelines.md). - [x] New/changed code adheres to [DSC Resource Style Guidelines](https://github.com/PowerShell/DscResources/blob/master/StyleGuidelines.md) and [Best Practices](https://github.com/PowerShell/DscResources/blob/master/BestPractices.md).
@johlju It seems likely the person who did #504 may have thought they fixed the file and folder names previously. Unfortunately, fixing the case of folders and files like this on a Windows system is very difficult. The only practical way to do it is as I did, which is the clone the repository down to a Linux system that has a case sensitive file system, and use I hope this is what you're looking for here. |
Is is possible to do it on Windows too by renaming (using I missed the problem in the files and folders when reviewing the previous PR. But I think that PR solved all the code changes. 😊 |
Thank you for the PR 😄 |
It should be possible in theory, but it doesn't quite work. Git always gets confused about which files are being moved around. Maybe if you did the moves in a really granular way committing each move as you did them you could get it done. But it's much easier to just spin up an ubunutu container and move them directly :) |
Agree it is faster in Linux. So rarely I done it, just a file here and there, so I did the granular approach of renaming. :) |
- Changes to xSslSettings - Updated casing of `xSslSettings` in all file names, folder names, schema, and documentation (issue #536).
- Changes to xSslSettings - Updated casing of `xSslSettings` in all file names, folder names, schema, and documentation (issue dsccommunity#536).
There are files and folders that are named
xSSLSettings
instead ofxSslSettings
(lower-case 'sl'). Also code referencingxSSLSettings
should be changed toxSslSettings
.The text was updated successfully, but these errors were encountered: