Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/darkwizard242/ansible-role-git

Ansible role for Git. Available on Ansible Galaxy.
https://github.com/darkwizard242/ansible-role-git

ansible ansible-galaxy ansible-role git os unix version-control-system

Last synced: 19 days ago
JSON representation

Ansible role for Git. Available on Ansible Galaxy.

Awesome Lists containing this project

README

        

[![build-test](https://github.com/darkwizard242/ansible-role-git/workflows/build-and-test/badge.svg?branch=master)](https://github.com/darkwizard242/ansible-role-git/actions?query=workflow%3Abuild-and-test) [![release](https://github.com/darkwizard242/ansible-role-git/workflows/release/badge.svg)](https://github.com/darkwizard242/ansible-role-git/actions?query=workflow%3Arelease) ![Ansible Role](https://img.shields.io/ansible/role/d/darkwizard242/git) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=ansible-role-git&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=ansible-role-git) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=ansible-role-git&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=ansible-role-git) [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=ansible-role-git&metric=security_rating)](https://sonarcloud.io/dashboard?id=ansible-role-git) ![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/darkwizard242/ansible-role-git?label=release) ![GitHub repo size](https://img.shields.io/github/repo-size/darkwizard242/ansible-role-git?color=orange&style=flat-square)

# Ansible Role: git

Role to install (_by default_) [git](https://git-scm.com/) package or uninstall (_if passed as var_) on **Debian**, **Ubuntu** and **CentOS** systems.

## Requirements

None.

## Role Variables

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

### Variables list:

```yaml
git_app: git
git_desired_state: present
```

### Variables table:

Variable | Description
----------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------
git_app | Defines the app to install i.e. **git**
git_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 **git** package) in ansible playbooks.

```yaml
- hosts: servers
roles:
- darkwizard242.git
```

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

```yaml
- hosts: servers
roles:
- darkwizard242.git
vars:
git_desired_state: latest
```

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

```yaml
- hosts: servers
roles:
- darkwizard242.git
vars:
git_desired_state: absent
```

## License

[MIT](https://github.com/darkwizard242/ansible-role-git/blob/master/LICENSE)

## Author Information

This role was created by [Ali Muhammad](https://www.alimuhammad.dev/).