{"id":15878830,"url":"https://github.com/darkwizard242/ansible-role-vagrant","last_synced_at":"2025-03-16T06:33:02.329Z","repository":{"id":43717480,"uuid":"205495114","full_name":"darkwizard242/ansible-role-vagrant","owner":"darkwizard242","description":"Ansible role for Vagrant. Available on Ansible Galaxy.","archived":false,"fork":false,"pushed_at":"2024-07-02T21:19:06.000Z","size":60,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-07T02:41:54.488Z","etag":null,"topics":["ansible","ansible-galaxy","ansible-role","linux","vagrant","virtualization"],"latest_commit_sha":null,"homepage":"https://galaxy.ansible.com/darkwizard242/vagrant","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/darkwizard242.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2019-08-31T04:30:28.000Z","updated_at":"2024-07-02T21:18:56.000Z","dependencies_parsed_at":"2024-01-23T03:42:43.150Z","dependency_job_id":null,"html_url":"https://github.com/darkwizard242/ansible-role-vagrant","commit_stats":null,"previous_names":[],"tags_count":31,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkwizard242%2Fansible-role-vagrant","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkwizard242%2Fansible-role-vagrant/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkwizard242%2Fansible-role-vagrant/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkwizard242%2Fansible-role-vagrant/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/darkwizard242","download_url":"https://codeload.github.com/darkwizard242/ansible-role-vagrant/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221661154,"owners_count":16859488,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","ansible-galaxy","ansible-role","linux","vagrant","virtualization"],"created_at":"2024-10-06T02:42:00.589Z","updated_at":"2025-03-16T06:33:02.322Z","avatar_url":"https://github.com/darkwizard242.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![build-test](https://github.com/darkwizard242/ansible-role-vagrant/workflows/build-and-test/badge.svg?branch=master)](https://github.com/darkwizard242/ansible-role-vagrant/actions?query=workflow%3Abuild-and-test) [![release](https://github.com/darkwizard242/ansible-role-vagrant/workflows/release/badge.svg)](https://github.com/darkwizard242/ansible-role-vagrant/actions?query=workflow%3Arelease) ![Ansible Role](https://img.shields.io/ansible/role/d/darkwizard242/vagrant) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=ansible-role-vagrant\u0026metric=sqale_rating)](https://sonarcloud.io/dashboard?id=ansible-role-vagrant) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=ansible-role-vagrant\u0026metric=reliability_rating)](https://sonarcloud.io/dashboard?id=ansible-role-vagrant) [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=ansible-role-vagrant\u0026metric=security_rating)](https://sonarcloud.io/dashboard?id=ansible-role-vagrant) ![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/darkwizard242/ansible-role-vagrant?label=release) ![GitHub repo size](https://img.shields.io/github/repo-size/darkwizard242/ansible-role-vagrant?color=orange\u0026style=flat-square)\n\n# Ansible Role: Vagrant\n\nRole to install (_by default_) [vagrant](https://www.vagrantup.com/) package on **Debian/Ubuntu** and **EL** systems.\n\n## Requirements\n\nNone.\n\n## Role Variables\n\nAvailable variables are listed below (located in `defaults/main.yml`):\n\n### Variables list:\n\n```yaml\nvagrant_app: vagrant\nvagrant_version: 2.4.3\nvagrant_os: \"{{ ansible_system | lower }}\"\nvagrant_architecture_map:\n  amd64: amd64\n  arm: arm64\n  x86_64: amd64\n  armv6l: armv6\n  armv7l: armv7\n  aarch64: arm64\n  32-bit: \"386\"\n  64-bit: amd64\nvagrant_dl_url: https://releases.hashicorp.com\nvagrant_dl_loc: /tmp\nvagrant_bin_path: /usr/local/bin\nvagrant_file_owner: root\nvagrant_file_group: root\nvagrant_file_mode: '0755'\n```\n\n### Variables table:\n\nVariable                 | Description\n------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------\nvagrant_app              | Defines the app to install i.e. **vagrant**\nvagrant_version          | Defined to dynamically fetch the desired version to install. Defaults to: **2.4.3**\nvagrant_os               | Defines os type. Used for obtaining the correct type of binaries based on OS type.\nvagrant_architecture_map | Defines os architecture. Used to set the correct type of binaries based on OS System Architecture.\nvagrant_dl_url           | Defines URL to download the vagrant binary from.\nvagrant_dl_loc           | Defined to dynamically set where to place the binary archive for `vagrant` temporarily. Defaults to: **/tmp**\nvagrant_bin_path         | Defined to dynamically set the appropriate path to store vagrant binary into. Defaults to (as generally available on any user's PATH): **/usr/local/bin**\nvagrant_file_owner       | Owner for the binary file of vagrant.\nvagrant_file_group       | Group for the binary file of vagrant.\nvagrant_file_mode        | Mode for the binary file of vagrant.\n\n## Dependencies\n\nNone\n\n## Example Playbook\n\nFor default behaviour of role (i.e. installation of **vagrant**) in ansible playbooks.\n\n```yaml\n- hosts: servers\n  roles:\n    - darkwizard242.vagrant\n```\n\nFor customizing behavior of role (i.e. specifying the desired **vagrant** version) in ansible playbooks.\n\n```yaml\n- hosts: servers\n  roles:\n    - darkwizard242.vagrant\n  vars:\n    vagrant_version: 2.2.10\n```\n\nFor customizing behavior of role (i.e. placing binary of **vagrant** package in different location) in ansible playbooks.\n\n```yaml\n- hosts: servers\n  roles:\n    - darkwizard242.vagrant\n  vars:\n    vagrant_bin_path: /bin/\n```\n\n## License\n\n[MIT](https://github.com/darkwizard242/ansible-role-vagrant/blob/master/LICENSE)\n\n## Author Information\n\nThis role was created by [Ali Muhammad](https://www.alimuhammad.dev/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarkwizard242%2Fansible-role-vagrant","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdarkwizard242%2Fansible-role-vagrant","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarkwizard242%2Fansible-role-vagrant/lists"}