An open API service indexing awesome lists of open source software.

https://github.com/thedumbtechguy/ansible-role-debug

An ansible role to dump all variables in the current session to a file on the host
https://github.com/thedumbtechguy/ansible-role-debug

Last synced: 4 months ago
JSON representation

An ansible role to dump all variables in the current session to a file on the host

Awesome Lists containing this project

README

          

# Ansible Role: Debug

An ansible role to dump all variables in the current session to a file on the host.

## Requirements

> This role has been tested on `Ubuntu 16.04` and `Ubuntu 16.10` only.

## Variables

- `debug_var_dump_path`: path on remote host to dump variables in.
- Default: `/tmp/ansible.all`

## Usage Example

```yaml
- hosts: all
roles:
- thedumbtechguy.debug
```

## License

MIT / BSD

## Author Information

This role was created by [TheDumbTechGuy](https://github.com/thedumbtechguy) ( [twitter](https://twitter.com/frostymarvelous) | [blog](https://thedumbtechguy.blogspot.com) | [galaxy](https://galaxy.ansible.com/thedumbtechguy/) )

## Credits

This role is based on information presented by [Lester Wade](https://coderwall.com/lwade) in the coderwall article [Dump all variables](https://coderwall.com/p/13lh6w/dump-all-variables).