Skip to content

darkwizard242/ansible-role-sslscan

Repository files navigation

build-test release Ansible Role Maintainability Rating Reliability Rating Security Rating GitHub tag (latest SemVer) GitHub repo size

Ansible Role: sslscan

Role to install (by default) sslscan or uninstall (if passed as var) on Debian based and EL based systems. Sslscan is used for performing SSL/TLS scans.

Requirements

None.

Role Variables

Available variables are listed below (located in defaults/main.yml):

Variables list:

sslscan_app: sslscan
sslscan_desired_state: present

Variables table:

Variable Description
sslscan_app Defines the app to install i.e. sslscan
sslscan_desired_state Defined to dynamically chose whether to install (i.e. either present or latest) or uninstall (i.e. absent) the package. Defaults to present.

Dependencies

None

Example Playbook

For default behaviour of role (i.e. installation of sslscan package) in ansible playbooks.

- hosts: servers
  roles:
    - darkwizard242.sslscan

For customizing behavior of role (i.e. installation of latest sslscan package) in ansible playbooks.

- hosts: servers
  roles:
    - darkwizard242.sslscan
  vars:
    sslscan_desired_state: latest

For customizing behavior of role (i.e. un-installation of sslscan package) in ansible playbooks.

- hosts: servers
  roles:
    - darkwizard242.sslscan
  vars:
    sslscan_desired_state: absent

License

MIT

Author Information

This role was created by Ali Muhammad.