ansible-toolbox
ansible-toolbox copied to clipboard
can we run multiple roles with ansible-role ??
Because ansible-eval argument will be double quoted (implementation detail).
I have this task: ``` - name: Symlink "smartless" in "/usr/local/bin/" file: state: link src: "{{ smartless_clone_dir_path }}/smartless/smartless" dest: "/usr/local/bin/smartless" owner: "{{ smartless_user_name | default(omit) }}" group: "{{ smartless_user_name |...
I have custom roles on `$(pwd)/roles` dir, but since `ansible-role` generate the playbook in `/tmp` the path is ignored. I'm running with `ANSIBLE_ROLES_PATH=`pwd`/roles ansible-role ...` to fix that, but it...
Would be nice to implement `--limit` to apply `ansible-role` only for group of hosts from inventory instead of all.
One very useful script to have would an `ansible-ssh` which would start an interactive ssh session with the $1 hostname from inventory ini. This can be implemented in few lines...
Commit 496581ac (fix issues around the use of relative paths) moves the generated temp playbook file to /tmp instead of `.`, but this means the role search path is now...
When running a playbook, adding the `--diff` flag will cause changes (e.g., rendered template files, etc.) to be displayed in Ansible's output. It would be nice if `ansible-role` did the...
Argparse treats options as strings, so -e test="123" means for it: dest = e options= 'test=123' this is problematic when using spaces or json in extra vars: `ansible-eval -e test='[1,...