UsageΒΆ

  • To install and execute:
ansible-galaxy install constrict0r.task
ansible localhost -m include_role -a name=constrict0r.task -K
  • Passing variables:
ansible localhost -m include_role -a name=constrict0r.task -K \
    -e "{user_tasks: ['https://is.gd/uE0TTp']}"
  • To include the role on a playbook:
- hosts: servers
  roles:
      - {role: constrict0r.task}
  • To include the role as dependency on another role:
dependencies:
  - role: constrict0r.task
    user_tasks: ['https://is.gd/uE0TTp']
  • To use the role from tasks:
- name: Execute role task.
  import_role:
    name: constrict0r.task
  vars:
    user_tasks: ['https://is.gd/uE0TTp']

To run tests:

cd task
chmod +x testme.sh
./testme.sh

On some tests you may need to use sudo to succeed.