community.general.macports – Package manager for MacPorts

Note

This plugin is part of the community.general collection (version 3.8.3).

You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install community.general.

To use it in a playbook, specify: community.general.macports.

Synopsis

  • Manages MacPorts packages (ports)

Parameters

Parameter

Comments

name

aliases: port

list / elements=string

A list of port names.

selfupdate

aliases: update_cache, update_ports

boolean

Update Macports and the ports tree, either prior to installing ports or as a separate step.

Equivalent to running port selfupdate.

Choices:

  • no ← (default)

  • yes

state

string

Indicates the desired state of the port.

Choices:

  • present ← (default)

  • absent

  • active

  • inactive

  • installed

  • removed

upgrade

boolean

Upgrade all outdated ports, either prior to installing ports or as a separate step.

Equivalent to running port upgrade outdated.

Choices:

  • no ← (default)

  • yes

variant

aliases: variants

string

A port variant specification.

variant is only supported with state: installed/present.

Examples

- name: Install the foo port
  community.general.macports:
    name: foo

- name: Install the universal, x11 variant of the foo port
  community.general.macports:
    name: foo
    variant: +universal+x11

- name: Install a list of ports
  community.general.macports:
    name: "{{ ports }}"
  vars:
    ports:
    - foo
    - foo-tools

- name: Update Macports and the ports tree, then upgrade all outdated ports
  community.general.macports:
    selfupdate: yes
    upgrade: yes

- name: Update Macports and the ports tree, then install the foo port
  community.general.macports:
    name: foo
    selfupdate: yes

- name: Remove the foo port
  community.general.macports:
    name: foo
    state: absent

- name: Activate the foo port
  community.general.macports:
    name: foo
    state: active

- name: Deactivate the foo port
  community.general.macports:
    name: foo
    state: inactive

Authors

  • Jimmy Tang (@jcftang)