community.general.portinstall (0.2.1) — module

Installing packages from FreeBSD's ports system

Authors: berenddeboer (@berenddeboer)

Install collection

Install with ansible-galaxy collection install community.general:==0.2.1


Add to requirements.yml

  collections:
    - name: community.general
      version: 0.2.1

Description

Manage packages for FreeBSD using 'portinstall'.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Install package foo
  portinstall:
    name: foo
    state: present
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Install package security/cyrus-sasl2-saslauthd
  portinstall:
    name: security/cyrus-sasl2-saslauthd
    state: present
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Remove packages foo and bar
  portinstall:
    name: foo,bar
    state: absent

Inputs

    
name:
    description:
    - name of package to install/remove
    required: true

state:
    choices:
    - present
    - absent
    default: present
    description:
    - state of the package
    required: false

use_packages:
    default: true
    description:
    - use packages instead of ports whenever available
    required: false
    type: bool