mirror of https://github.com/ansible/ansible.git
[Backport][Docs] Docs 2.12 backportapalooza7 (#76298)
* Stop using "checksumming" instead of "encrypting" in the docs (#76168)
* Hashing is not encrypting
All encryption systems have a formal inverse function to decrypt
A hash is a one way function without inverse by definition
* Update docs/docsite/rst/user_guide/playbooks_filters.rst
Co-authored-by: Sandra McCann <samccann@redhat.com>
* ansible-core 2.12 dropped support for galaxy.yaml. (#76179)
* apt - remove obsolete documentation (#76243)
The lock_timeout feature was recently added to the apt module making
this section in the documentation no longer necessary
* Documentation for other types in collection `requirements.yml` (#75872)
* Docs: Link to valid data types for role parameters (#76276)
* Fixed typo in keyword_desc.yml (#76280)
The description of 'max_fail_percentage' had a typo.
* Restore documentation on M() and R() (#76284)
* Undo most of bf9944266c, add note on where R() does not work.
Co-authored-by: Brian Scholer <1260690+briantist@users.noreply.github.com>
Co-authored-by: Vicente Jimenez Aguilar <googuy@gmail.com>
Co-authored-by: Sandra McCann <samccann@redhat.com>
Co-authored-by: Felix Fontein <felix@fontein.de>
Co-authored-by: Sam Doran <sdoran@redhat.com>
Co-authored-by: Daniel Goldman <merkavabuilder@gmail.com>
Co-authored-by: nkoechling <nkoechling@users.noreply.github.com>
pull/76392/head
parent
ecbe4a1530
commit
04967a5664
@ -0,0 +1,24 @@
|
||||
Ansible can also install from a source directory in several ways:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
collections:
|
||||
# directory containing the collection
|
||||
- source: ./my_namespace/my_collection/
|
||||
type: dir
|
||||
|
||||
# directory containing a namespace, with collections as subdirectories
|
||||
- source: ./my_namespace/
|
||||
type: subdirs
|
||||
|
||||
Ansible can also install a collection collected with ``ansible-galaxy collection build`` or downloaded from Galaxy for offline use by specifying the output file directly:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
collections:
|
||||
- source: /tmp/my_namespace-my_collection-1.0.0.tar.gz
|
||||
type: file
|
||||
|
||||
.. note::
|
||||
|
||||
Relative paths are calculated from the current working directory (where you are invoking ``ansible-galaxy install -r`` from). They are not taken relative to the ``requirements.yml`` file.
|
||||
Loading…
Reference in New Issue