{"id":19569497,"url":"https://github.com/buluma/ansible-collection-mac","last_synced_at":"2026-05-06T14:39:41.540Z","repository":{"id":56810180,"uuid":"489705698","full_name":"buluma/ansible-collection-mac","owner":"buluma","description":"This collection includes helpful Ansible roles and content to help with macOS automation.","archived":false,"fork":false,"pushed_at":"2024-01-10T04:34:36.000Z","size":50,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-26T10:28:59.318Z","etag":null,"topics":["ansible","automation","collection","macos"],"latest_commit_sha":null,"homepage":"https://galaxy.ansible.com/buluma/mac","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/buluma.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":"2022-05-07T15:05:41.000Z","updated_at":"2025-01-17T06:06:55.000Z","dependencies_parsed_at":"2024-01-10T06:02:05.971Z","dependency_job_id":"4c53406e-62b9-4fdf-b3fd-c9f349bf726b","html_url":"https://github.com/buluma/ansible-collection-mac","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/buluma/ansible-collection-mac","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buluma%2Fansible-collection-mac","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buluma%2Fansible-collection-mac/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buluma%2Fansible-collection-mac/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buluma%2Fansible-collection-mac/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/buluma","download_url":"https://codeload.github.com/buluma/ansible-collection-mac/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/buluma%2Fansible-collection-mac/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32698984,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T08:33:17.875Z","status":"ssl_error","status_checked_at":"2026-05-06T08:33:17.221Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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","automation","collection","macos"],"created_at":"2024-11-11T06:10:09.450Z","updated_at":"2026-05-06T14:39:41.525Z","avatar_url":"https://github.com/buluma.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mac Collection for Ansible\n\n[![Apache-2.0 licensed][badge-license]][link-license]\n[![Galaxy Collection][badge-collection]][link-galaxy]\n[![CI][badge-gh-actions]][link-gh-actions]\n\nThis collection includes helpful Ansible roles and content to help with macOS automation. For a good example of the collection's usage, see the [Mac Dev Playbook](https://github.com/buluma/mac-dev-playbook).\n\nRoles included in this collection (click on the link to see the role's README and documentation):\n\n  - `buluma.mac.homebrew` ([documentation](https://github.com/buluma/ansible-collection-mac/blob/master/roles/homebrew/README.md))\n  - `buluma.mac.mas` ([documentation](https://github.com/buluma/ansible-collection-mac/blob/master/roles/mas/README.md))\n  - `buluma.mac.dock` ([documentation](https://github.com/buluma/ansible-collection-mac/blob/master/roles/dock/README.md))\n\n## Installation\n\nInstall via Ansible Galaxy:\n\n```\nansible-galaxy collection install buluma.mac\n```\n\nOr include this collection in your playbook's `requirements.yml` file:\n\n```\n---\ncollections:\n  - name: buluma.mac\n```\n\nFor a real-world example, see my [Mac Dev Playbook's requirements file](https://github.com/buluma/mac-dev-playbook/blob/master/requirements.yml).\n\n### Role Requirements\n\nRequires separate installation of the `elliotweiser.osx-command-line-tools` role. Because Ansible collections are not able to depend on roles, you will need to make sure that role is installed either by manually installing it with the `ansible-galaxy` command, or adding it under the `roles` section of your `requirements.yml` file:\n\n```yaml\n---\nroles:\n  - name: elliotweiser.osx-command-line-tools\n\ncollections:\n  - name: buluma.mac\n```\n\n## Usage\n\nHere's an example playbook which installs some Mac Apps (assuming you are signed into the App Store), CLI tools via Homebrew, and Cask Apps using Homebrew:\n\n```yaml\n- hosts: localhost\n  connection: local\n  gather_facts: false\n\n  vars:\n    mas_installed_app_ids:\n      - 424389933 # Final Cut Pro\n      - 497799835 # Xcode\n\n    homebrew_installed_packages:\n      - node\n      - nvm\n      - redis\n      - ssh-copy-id\n      - pv\n\n    homebrew_cask_apps:\n      - docker\n      - firefox\n      - google-chrome\n      - vlc\n\n  roles:\n    - buluma.mac.homebrew\n    - buluma.mac.mas\n```\n\nFor a real-world usage example, see my [Mac Dev Playbook](https://github.com/buluma/mac-dev-playbook).\n\nSee the full documentation for each role in the role's README, linked above.\n\n## License\n\nApache-2.0\n\n## Author\n\nThis collection was created by [Michael Buluma](https://buluma.github.io).\n\n[badge-gh-actions]: https://github.com/buluma/ansible-collection-mac/workflows/CI/badge.svg?event=push\n[link-gh-actions]: https://github.com/buluma/ansible-collection-mac/actions?query=workflow%3ACI\n[badge-collection]: https://img.shields.io/badge/collection-buluma.mac-blue\n[link-galaxy]: https://galaxy.ansible.com/buluma/mac\n[badge-license]: https://img.shields.io/github/license/buluma/ansible-collection-mac.svg\n[link-license]: https://github.com/buluma/ansible-collection-mac/blob/master/LICENSE\n[badge-gh-actions]: https://github.com/buluma/ansible-role-homebrew/workflows/CI/badge.svg?event=push\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuluma%2Fansible-collection-mac","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbuluma%2Fansible-collection-mac","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbuluma%2Fansible-collection-mac/lists"}