Skip to content

Latest commit

 

History

History
141 lines (107 loc) · 3.8 KB

community.windows.win_scoop_bucket_module.rst

File metadata and controls

141 lines (107 loc) · 3.8 KB

community.windows.win_scoop_bucket

Manage Scoop buckets

Version added: 1.0.0

  • Manage Scoop buckets

The below requirements are needed on the host that executes this module.

  • git
Parameter Choices/Defaults Comments
name
string / required
Name of the Scoop bucket.
repo
string
Git repository that contains the scoop bucket
state
string
    Choices:
  • absent
  • present ←
State of the Scoop bucket.
When absent, will ensure the package is not installed.
When present, will ensure the package is installed.

.. seealso::

   :ref:`community.windows.win_scoop_module`
      The official documentation on the **community.windows.win_scoop** module.
   `Scoop website <https://scoop.sh>`_
       More information about Scoop
   `Scoop directory <https://rasa.github.io/scoop-directory/>`_
       A directory of buckets for the scoop package manager for Windows


- name: Add the extras bucket
  community.windows.win_scoop_bucket:
    name: extras

- name: Remove the versions bucket
  community.windows.win_scoop_bucket:
    name: versions
    state: absent

- name: Add a custom bucket
  community.windows.win_scoop_bucket:
    name: my-bucket
    repo: https://github.com/example/my-bucket

Authors

  • Jamie Magee (@JamieMagee)