Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geerlingguy/ansible-role-git
Ansible Role - Git
https://github.com/geerlingguy/ansible-role-git
ansible distributed git install role setup vcs version-control
Last synced: 8 days ago
JSON representation
Ansible Role - Git
- Host: GitHub
- URL: https://github.com/geerlingguy/ansible-role-git
- Owner: geerlingguy
- License: mit
- Created: 2014-03-01T02:52:28.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-01-25T04:11:48.000Z (9 months ago)
- Last Synced: 2024-04-10T18:22:41.405Z (7 months ago)
- Topics: ansible, distributed, git, install, role, setup, vcs, version-control
- Homepage: https://galaxy.ansible.com/geerlingguy/git/
- Size: 88.9 KB
- Stars: 198
- Watchers: 10
- Forks: 136
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-ansible-roles - geerlingguy.git - Installs Git, a distributed version control system, on any RHEL/CentOS or Debian/Ubuntu Linux system. (Version Control / Logging and Monitoring)
- awesome-list-ansible - ansible-role-git - Git (vcs)
README
# Ansible Role: Git
[![CI](https://github.com/geerlingguy/ansible-role-git/workflows/CI/badge.svg?event=push)](https://github.com/geerlingguy/ansible-role-git/actions?query=workflow%3ACI)
Installs Git, a distributed version control system, on any RHEL/CentOS or Debian/Ubuntu Linux system.
## Requirements
None.
## Role Variables
Available variables are listed below, along with default values (see `defaults/main.yml`):
workspace: /root
Where certain files will be downloaded and adjusted prior to git installation, if needed.
git_enablerepo: ""
This variable, a well as `git_packages`, will be used to install git via a particular `yum` repo if `git_install_from_source` is false (CentOS only). Any additional repositories you have installed that you would like to use for a newer/different Git version.
git_packages:
- gitThe specific Git packages that will be installed. By default, only `git` is installed, but you could add additional git-related packages like `git-svn` if desired.
git_install_from_source: false
git_install_path: "/usr"
git_version: "2.26.0"Whether to install Git from source; if set to `true`, `git_version` is required and will be used to install a particular version of git (see all available versions here: https://www.kernel.org/pub/software/scm/git/), and `git_install_path` defines where git should be installed.
git_install_from_source_force_update: false
If git is already installed at and older version, force a new source build. Only applies if `git_install_from_source` is `true`.
## Dependencies
None.
## Example Playbook
- hosts: servers
roles:
- { role: geerlingguy.git }## License
MIT / BSD
## Author Information
This role was created in 2014 by [Jeff Geerling](https://www.jeffgeerling.com/), author of [Ansible for DevOps](https://www.ansiblefordevops.com/).