ansible.builtin.bzr (v2.9.27) — module

Deploy software (or files) from bzr branches

| "added in version" 1.1 of ansible.builtin"

Authors: André Paramés (@andreparames)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.9.27

Description

Manage I(bzr) branches to deploy files or software.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Example bzr checkout from Ansible Playbooks
- bzr:
    name: bzr+ssh://foosball.example.org/path/to/branch
    dest: /srv/checkout
    version: 22

Inputs

    
dest:
    description:
    - Absolute path of where the branch should be cloned to.
    required: true

name:
    aliases:
    - parent
    description:
    - SSH or HTTP protocol address of the parent branch.
    required: true

force:
    default: 'no'
    description:
    - If C(yes), any modified files in the working tree will be discarded.  Before 1.9
      the default value was C(yes).
    type: bool

version:
    default: head
    description:
    - What version of the branch to clone.  This can be the bzr revno or revid.

executable:
    description:
    - Path to bzr executable to use. If not supplied, the normal mechanism for resolving
      binary paths will be used.
    version_added: '1.4'
    version_added_collection: ansible.builtin