Branch | Status |
---|---|
master | |
development |
This resource is aimed at getting and installing packages using Chocolatey.
The resource takes the name of the package and will then install that package.
See ExampleConfig.ps1 for example usage.
See list of packages here: https://chocolatey.org/packages
Happy to accept new features and fixes. Outstanding issues which can be worked on tagged Up For Grabs
under issues.
Here's the general process of fixing an issue in the DSC Resource Kit:
- Fork the repository.
- Clone your fork to your machine.
- It's preferred to create a non-master working branch where you store updates.
- Make changes.
- Write pester tests to ensure that the issue is fixed.
- Submit a pull request to the development branch.
- Make sure all tests are passing in AppVeyor for your pull request.
- Make sure your code does not contain merge conflicts.
- Address comments (if any).
AppVeyor is used to package up the resource and publish to the PowerShell Gallery (on successful build from a newly pushed tag only).
The AppVeyor scripts do the following:
- Test the resources using 'xDSCResourceDesigner'
- Verify best practises using 'PSScriptAnalyzer'
- Update the version in the manifest file
- Publish the module to the PowerShell gallery
- Check in updated manifest file to GitHub
To build:
- Update
ModuleVersion
incChoco.psd1
- usemajor.minor.patch.0
; - Update
version
inappveyor.yml
- usemajor.minor.patch.{build}
; - Merge development branch to master -
git checkout master
,git merge development
; - Tag master with new version -
git tag v<major.minor.patch>
; - Push changes with tag
git push v<major.minor.patch>
The maximum envelope size for WinRM is not sufficient for installing large packages. To increase the envelope size use winrm set winrm/config @{MaxEnvelopeSizekb=”153600″}
- this exampe will increase it to 150MB.