Metadata-Version: 2.4
Name: ansible-extra
Version: 1.0.1
Summary: Extract cached JSON Ansible facts.
Author-email: Sébastien Hocquet <seb@ipamo.net>
Project-URL: Homepage, https://codeberg.org/ipamo/ansible-extra
Project-URL: Bug Tracker, https://codeberg.org/ipamo/ansible-extra/issues
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: license-file

Ansible Extra
=============

Extract cached JSON Ansible facts.


## Getting started

Configure your Ansible project with a `ansible.cfg` file in order to cache gathered facts in JSON format, for example:

```ini
[defaults]
gathering = smart
fact_caching = jsonfile
fact_caching_connection = ~/.ansible/my-project-facts
fact_caching_timeout = 86400
```

Install [from PyPI](https://pypi.org/project/ansible-extra/):

```sh
pip install ansible-extra
```

Usage example:

```sh
ansible-extra --out-dir my-output-directory --format json
```

Pass the `--help` argument to see available options:
    
```sh
ansible-extra --help
```


## Contribute

Pull requests are welcome.

See [contributing guidelines](https://codeberg.org/ipamo/ansible-extra/src/branch/main/CONTRIBUTING.md).


## Legal

This project is licensed under the terms of the open-source [ISC license](https://codeberg.org/ipamo/ansible-extra/src/branch/main/LICENSE.txt).

This project is not affiliated with Ansible or Red Hat.
