/ansible-role-cloc

Ansible role for cloc. Available on Ansible Galaxy.

Primary LanguagePythonMIT LicenseMIT

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

Ansible Role: cloc

Role to install (by default) cloc or uninstall (if passed as var) on Debian based and EL based systems. As per the official statement on the repository's GitHub page, it allows for "cloc counts blank lines, comment lines, and physical lines of source code in many programming languages."

Requirements

None.

Role Variables

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

Variables list:

cloc_app: cloc
cloc_desired_state: present

Variables table:

Variable Description
cloc_app Defines the app to install i.e. cloc
cloc_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 cloc package) in ansible playbooks.

- hosts: servers
  roles:
    - darkwizard242.cloc

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

- hosts: servers
  roles:
    - darkwizard242.cloc
  vars:
    cloc_desired_state: latest

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

- hosts: servers
  roles:
    - darkwizard242.cloc
  vars:
    cloc_desired_state: absent

License

MIT

Author Information

This role was created by Ali Muhammad.