{"id":25909357,"url":"https://github.com/kaweees/ansible","last_synced_at":"2026-04-09T18:04:35.602Z","repository":{"id":167430473,"uuid":"642556397","full_name":"Kaweees/ansible","owner":"Kaweees","description":"My ansible playbook collection that has been written for setting up a Debian 12 (bookworm) Linux machine","archived":false,"fork":false,"pushed_at":"2024-06-21T14:51:53.000Z","size":448,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-06-22T07:24:53.654Z","etag":null,"topics":["ansible","ansible-galaxy","ansible-playbook","ansible-role","debian"],"latest_commit_sha":null,"homepage":"https://miguelvf.dev/blog/ansible","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Kaweees.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,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-18T20:54:45.000Z","updated_at":"2024-06-21T14:51:56.000Z","dependencies_parsed_at":"2024-01-31T13:26:13.420Z","dependency_job_id":"ed918e5a-1322-4b97-82cd-917e924d8a33","html_url":"https://github.com/Kaweees/ansible","commit_stats":null,"previous_names":["kaweees/ansible"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kaweees%2Fansible","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kaweees%2Fansible/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kaweees%2Fansible/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kaweees%2Fansible/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kaweees","download_url":"https://codeload.github.com/Kaweees/ansible/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241629749,"owners_count":19993710,"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-playbook","ansible-role","debian"],"created_at":"2025-03-03T08:17:15.596Z","updated_at":"2025-12-31T01:05:49.262Z","avatar_url":"https://github.com/Kaweees.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- PROJECT SHIELDS --\u003e\n\u003c!--\n*** I'm using markdown \"reference style\" links for readability.\n*** Reference links are enclosed in brackets [ ] instead of parentheses ( ).\n*** See the bottom of this document for the declaration of the reference variables\n*** for contributors-url, forks-url, etc. This is an optional, concise syntax you may use.\n*** https://www.markdownguide.org/basic-syntax/#reference-style-links\n--\u003e\n\u003cdiv align=\"left\"\u003e\n\n[![Contributors][contributors-shield]][contributors-url]\n[![Forks][forks-shield]][forks-url]\n[![Stargazers][stars-shield]][stars-url]\n\n\u003c/div\u003e\n\n\u003ca href=\"https://github.com/Kaweees/ansible\"\u003e\n  \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"assets/img/ansible-logo-light-mode.png\"\u003e\n  \u003cimg alt=\"Text changing depending on mode. Light: 'Ansible Logo Light Mode' Dark: 'Ansible Logo Dark Mode'\" src=\"assets/img/ansible-logo-dark-mode.png\" align=\"right\" width=\"150\"\u003e\n\u003c/a\u003e\n\n\u003cdiv align=\"left\"\u003e\n  \u003ch1\u003e\u003cem\u003e~ansible\u003c/em\u003e\u003c/h1\u003e\n\u003c/div\u003e\n\n\u003c!-- ABOUT THE PROJECT --\u003e\nThis playbook installs most of the software I use on my Linux machine for software development. This is a work-in-progress, and things will probably change as the sands of time flow.\n\n### Built With\n[![Ansible][Ansible-shield]][Ansble-url]\n\n\u003c!-- GETTING STARTED --\u003e\n## Getting Started\n\nTo get a local copy of the project up and running on your machine, follow these simple steps:\n\n\n### Installation\n\nIt is best to run this playbook remotely, as it is designed to be executed on a fresh install of Linux. To do so, run the following commands:\n\n1. Add your user to the sudoers group\n   ```bash\n   # execute the following commands from root\n   apt install -y sudo curl\n   sudo usermod -aG sudo \u003cusername\u003e\n   ```\n2. Execute the ansible-install script\n   ```bash\n   bash \u003c \u003c(curl -s https://raw.githubusercontent.com/Kaweees/ansible/main/ansible-install)\n   ```\n3. Start and enable NetworkManager\n   ```bash\n   sudo systemctl start NetworkManager #.service\n   sudo systemctl enable NetworkManager #.service\n   ```\n\nEnter your machine's password when prompted by Ansible.\n\n\u003c!-- USAGE EXAMPLES --\u003e\n## Usage\n\n### Running\n\n###  Testing\n\nTesting this playbook locally can be done by following the steps below:\n\n1. Clone the repository\n   ```bash\n    git clone https://github.com/Kaweees/ansible.git\n    cd ansible\n    ```\n2. Install Ansible via pip\n    ```bash\n    pip install ansible\n    ```\n3. Install Molecule with Docker support via pip\n    ```bash\n    pip install molecule[docker]\n    ```\n4. Initialize a Molecule scenario locally with Docker as the driver\n    ```bash\n    molecule init scenario -r local -d docker\n    ```\n5. Run the Molecule tests with the initialized scenario\n    ```bash\n    molecule test\n    ```\n\n\u003c!-- ROADMAP --\u003e\n## Roadmap\n\nSee the [open issues](\n\n\u003c!-- PROJECT FILE STRUCTURE --\u003e\n## Project Structure\n\n```\n. ansible/\n├── .ssh/                     - ssh configuration files\n├── auth_codes/               - auth codes for various services\n├── meta/                     - metadata regarding this project for Ansible Galaxy\n├── molecule/                 - molecule tests\n│   └── default/              - default molecule scenario\n│       ├── converge.yml      - main ansible playbook\n│       ├── molecule.yml      - molecule configuration\n│       └── verify.yml        - molecule verification\n├── tasks/                    - various ansible tasks\n├── vars/                     - various ansible variables\n├── .ansible-lint             - ansible-lint configuration\n├── .editorconfig             - editorconfig configuration\n├── .yamllint                 - yamllint configuration\n├── Dockerfile                - dockerfile for molecule tests\n├── README.md                 - you are here\n├── ansible-install           - entry point that install ansible and runs the playbook\n├── local.yml                 - ansible playbook to run locally\n└── nvim.Dockerfile           - dockerfile for neovim\n```\n\n\u003c!-- LICENSE --\u003e\n\u003c!-- https://choosealicense.com/ --\u003e\n## License\n\nMy ansible scripts are distributed under the terms of the GNU General Public License v3.0, as I firmly believe that collaborating on free and open-source software fosters innovations that mutually and equitably beneficial to both collaborators and users alike. See [LICENSE](LICENSE) for details and more information.\n\n\u003c!-- MARKDOWN LINKS \u0026 IMAGES --\u003e\n\u003c!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --\u003e\n[contributors-shield]: https://img.shields.io/github/contributors/Kaweees/ansible.svg?style=for-the-badge\n[contributors-url]: https://github.com/Kaweees/ansible/graphs/contributors\n[forks-shield]: https://img.shields.io/github/forks/Kaweees/ansible.svg?style=for-the-badge\n[forks-url]: https://github.com/Kaweees/ansible/network/members\n[stars-shield]: https://img.shields.io/github/stars/Kaweees/ansible.svg?style=for-the-badge\n[stars-url]: https://github.com/Kaweees/ansible/stargazers\n\n\u003c!-- MARKDOWN SHIELD BAGDES \u0026 LINKS --\u003e\n[Ansible-shield]: https://img.shields.io/badge/ansible-%231A1918.svg?style=for-the-badge\u0026logo=ansible\u0026logoColor=FFFFFF\u0026labelColor=222222\u0026color=FFFFFF\n[Ansble-url]: https://www.ansble.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaweees%2Fansible","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkaweees%2Fansible","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaweees%2Fansible/lists"}