724501e9af
* Refactor code to be more robust. Run main logic inside a try {} catch {} block. If there is any error, bail out and log all the command output automatically. * Rely on error code generated by chocolatey instead of scraping text output to determine success/failure. * Add support for unattended installs: (`-y` flag is a requirement by chocolatey) * Before (un)installing, check existence of files. * Use functions to abstract logic * The great rewrite of 0.9.9, the `choco` interface has changed, check if chocolatey is installed and an older version. If so upgrade to latest. * Allow upgrading packages that are already installed * Use verbose logging for chocolate actions * Adding functionality to specify a source for a chocolatey repository. (@smadam813) * Removing pre-determined sources and adding specified source url in it's place. (@smadam813) Contains contributions from: * Adam Keech <akeech@chathamfinancial.com> (@smadam813)
105 lines
2.9 KiB
Python
105 lines
2.9 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# (c) 2014, Trond Hindenes <trond@hindenes.com>
|
|
#
|
|
# This file is part of Ansible
|
|
#
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# this is a windows documentation stub. actual code lives in the .ps1
|
|
# file of the same name
|
|
|
|
DOCUMENTATION = '''
|
|
---
|
|
module: win_chocolatey
|
|
version_added: "1.9"
|
|
short_description: Installs packages using chocolatey
|
|
description:
|
|
- Installs packages using Chocolatey (http://chocolatey.org/). If Chocolatey is missing from the system, the module will install it. List of packages can be found at http://chocolatey.org/packages
|
|
options:
|
|
name:
|
|
description:
|
|
- Name of the package to be installed
|
|
required: true
|
|
default: null
|
|
aliases: []
|
|
state:
|
|
description:
|
|
- State of the package on the system
|
|
required: false
|
|
choices:
|
|
- present
|
|
- absent
|
|
default: present
|
|
aliases: []
|
|
force:
|
|
description:
|
|
- Forces install of the package (even if it already exists). Using Force will cause ansible to always report that a change was made
|
|
required: false
|
|
choices:
|
|
- yes
|
|
- no
|
|
default: no
|
|
aliases: []
|
|
upgrade:
|
|
description:
|
|
- If package is already installed it, try to upgrade to the latest version or to the specified version
|
|
required: false
|
|
choices:
|
|
- yes
|
|
- no
|
|
default: no
|
|
aliases: []
|
|
version:
|
|
description:
|
|
- Specific version of the package to be installed
|
|
- Ignored when state == 'absent'
|
|
required: false
|
|
default: null
|
|
aliases: []
|
|
source:
|
|
description:
|
|
- Specify source rather than using default chocolatey repository
|
|
require: false
|
|
default: null
|
|
aliases: []
|
|
author: Trond Hindenes, Peter Mounce, Pepe Barbe, Adam Keech
|
|
'''
|
|
|
|
# TODO:
|
|
# * Better parsing when a package has dependencies - currently fails
|
|
# * Time each item that is run
|
|
# * Support 'changed' with gems - would require shelling out to `gem list` first and parsing, kinda defeating the point of using chocolatey.
|
|
|
|
EXAMPLES = '''
|
|
# Install git
|
|
win_chocolatey:
|
|
name: git
|
|
|
|
# Install notepadplusplus version 6.6
|
|
win_chocolatey:
|
|
name: notepadplusplus.install
|
|
version: 6.6
|
|
|
|
# Uninstall git
|
|
win_chocolatey:
|
|
name: git
|
|
state: absent
|
|
|
|
# Install git from specified repository
|
|
win_chocolatey:
|
|
name: git
|
|
source: https://someserver/api/v2/
|
|
'''
|