ansible/windows/win_package.py

85 lines
3.2 KiB
Python
Raw Normal View History

2015-07-14 12:03:04 +02:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
# (c) 2014, Trond Hindenes <trond@hindenes.com>, and others
#
# 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_package
version_added: "1.7"
2015-10-01 19:12:21 +02:00
author: Trond Hindenes
short_description: Installs/Uninstalls an installable package, either from local file system or url
2015-07-14 12:03:04 +02:00
description:
2016-05-24 13:24:04 +02:00
- Installs or uninstalls a package.
- 'Optionally uses a product_id to check if the package needs installing. You can find product ids for installed programs in the windows registry either in C(HKLM:Software\\Microsoft\\Windows\CurrentVersion\\Uninstall) or for 32 bit programs C(HKLM:Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall)'
2015-07-14 12:03:04 +02:00
options:
path:
description:
- Location of the package to be installed (either on file system, network share or url)
required: true
name:
description:
- Name of the package, if name isn't specified the path will be used for log messages
2015-07-14 12:03:04 +02:00
required: false
default: null
product_id:
description:
- product id of the installed package (used for checking if already installed)
- You can find product ids for installed programs in the windows registry either in C(HKLM:Software\\Microsoft\\Windows\CurrentVersion\\Uninstall) or for 32 bit programs C(HKLM:Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall)'
2015-10-01 19:08:42 +02:00
required: true
aliases: [productid]
2015-07-14 12:03:04 +02:00
arguments:
description:
- Any arguments the installer needs
default: null
2016-05-24 13:24:04 +02:00
required: false
2015-07-14 12:03:04 +02:00
state:
description:
2015-09-05 17:55:34 +02:00
- Install or Uninstall
choices:
2015-07-14 12:03:04 +02:00
- present
- absent
default: present
2016-05-24 13:24:04 +02:00
required: false
2015-07-14 12:03:04 +02:00
aliases: [ensure]
user_name:
description:
2015-09-05 17:55:34 +02:00
- Username of an account with access to the package if its located on a file share. Only needed if the winrm user doesn't have access to the package. Also specify user_password for this to function properly.
2015-07-14 12:03:04 +02:00
default: null
2016-05-24 13:24:04 +02:00
required: false
2015-07-14 12:03:04 +02:00
user_password:
description:
2015-09-05 17:55:34 +02:00
- Password of an account with access to the package if its located on a file share. Only needed if the winrm user doesn't have access to the package. Also specify user_name for this to function properly.
2015-07-14 12:03:04 +02:00
default: null
2016-05-24 13:24:04 +02:00
required: false
2015-07-14 12:03:04 +02:00
'''
EXAMPLES = '''
# Playbook example
2016-05-24 13:24:04 +02:00
- name: Install the vc thingy
win_package:
name="Microsoft Visual C thingy"
path="http://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe"
Product_Id="{CF2BEA3C-26EA-32F8-AA9B-331F7E34BA97}"
Arguments="/install /passive /norestart"
2015-07-14 12:03:04 +02:00
'''