https://github.com/poshsecurity/ccouchpotato
PowerShell DSC for CouchPotato
https://github.com/poshsecurity/ccouchpotato
Last synced: 4 days ago
JSON representation
PowerShell DSC for CouchPotato
- Host: GitHub
- URL: https://github.com/poshsecurity/ccouchpotato
- Owner: poshsecurity
- License: mit
- Created: 2016-07-17T11:32:25.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-02T13:05:18.000Z (almost 10 years ago)
- Last Synced: 2025-09-26T15:31:33.685Z (10 months ago)
- Language: PowerShell
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#cCouchPotato
A simple DSC module for maintaining a CouchPotato install
## Resources
* **CouchPotatoInstall** controls installation of CouchPotato
### SonarrInstall
Controls the installation (absent or present) of CouchPotato, also ensure that the software is automatically updated.
* **Ensure**: Ensure either Absent or Present (Installed and Updated)
## Versions
### 1.0
* Intial version
* Released to PowerShell Gallery
## Examples
### Ensure CouchPotato Installed
```powershell
configuration DownloadHostDSC
{
Import-DscResource -ModuleName 'cCouchPotato'
cCouchPotatoInstall CouchPotatoInstaller
{
Ensure = 'Present'
}
}
```
Ensures that CouchPotato is installed.
### Ensure CouchPotato not installed
```powershell
configuration DownloadHostDSC
{
Import-DscResource -ModuleName 'cCouchPotato'
cCouchPotato CouchPotatoInstaller
{
Ensure = 'Absent'
}
}
```
Ensures that CouchPotato is not installed.