{"id":44299835,"url":"https://github.com/infothrill/ansible-role-rpi_boot_config","last_synced_at":"2026-02-11T01:46:57.741Z","repository":{"id":36987730,"uuid":"69904448","full_name":"infothrill/ansible-role-rpi_boot_config","owner":"infothrill","description":"Configure raspberry pi /boot/config.txt","archived":false,"fork":false,"pushed_at":"2026-01-14T15:40:58.000Z","size":133,"stargazers_count":15,"open_issues_count":1,"forks_count":5,"subscribers_count":2,"default_branch":"develop","last_synced_at":"2026-01-14T18:11:43.729Z","etag":null,"topics":["ansible","ansible-role","raspberry-pi"],"latest_commit_sha":null,"homepage":"https://galaxy.ansible.com/infothrill/rpi_boot_config","language":"Jinja","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/infothrill.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2016-10-03T19:41:26.000Z","updated_at":"2026-01-14T15:40:30.000Z","dependencies_parsed_at":"2024-06-22T09:03:37.885Z","dependency_job_id":"3a5b2277-186c-4079-8244-ddfd4c1e8b6c","html_url":"https://github.com/infothrill/ansible-role-rpi_boot_config","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/infothrill/ansible-role-rpi_boot_config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infothrill%2Fansible-role-rpi_boot_config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infothrill%2Fansible-role-rpi_boot_config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infothrill%2Fansible-role-rpi_boot_config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infothrill%2Fansible-role-rpi_boot_config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/infothrill","download_url":"https://codeload.github.com/infothrill/ansible-role-rpi_boot_config/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/infothrill%2Fansible-role-rpi_boot_config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29325050,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T00:34:26.354Z","status":"ssl_error","status_checked_at":"2026-02-11T00:34:09.494Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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","ansible-role","raspberry-pi"],"created_at":"2026-02-11T01:46:55.657Z","updated_at":"2026-02-11T01:46:57.729Z","avatar_url":"https://github.com/infothrill.png","language":"Jinja","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ansible role: rpi_boot_config\n\n![Build status](https://github.com/infothrill/ansible-role-rpi_boot_config/actions/workflows/tests.yml/badge.svg)\n[![Ansible Role](https://img.shields.io/ansible/role/d/infothrill/rpi_boot_config)](https://galaxy.ansible.com/infothrill/rpi_boot_config/)\n\nMinimal role to manage config entries in a Raspberry Pi\n[boot config](http://www.raspberrypi.org/documentation/configuration/config-txt.md).\nAfter changing the boot config, it will restart the Raspberry Pi and wait for\nit to come back.\n\n## Requirements\n\nNothing specific so far.\n\n## Role Variables\n\nAvailable variables are listed below, along with default values (see defaults/main.yml):\n\n**boot\\_config\\_lines**, optional\n\nList of verbatim config lines to be put into `/boot/config.txt` (no assertions\nabout uniqueness are made). Example:\n\n```yaml\nboot_config_lines:\n    - \"gpu_mem=196\"\n    - \"dtoverlay=pi3-disable-wifi\"\n    - \"dtoverlay=pi3-disable-bt\"\n```\n\n**boot\\_config**, optional\n\nDictionary where every key translates to a unique setting in `/boot/config.txt`.\nExample:\n\n```yaml\nboot_config:\n    gpu_mem: '196'\n```\n\n**rpi\\_boot\\_config\\_file**, optional\n\nPath of the Raspberry Pi boot configuration file to manage, default:\n`/boot/config.txt`.\nExample:\n\n```yaml\nrpi_boot_config_file: /boot/config.txt\n```\n\n**rpi\\_boot\\_config\\_reboot**, optional\n\nBoolean to specify if a reboot should be performed if the config changes\n(default: true).\n`/boot/config.txt`.\nExample:\n\n```yaml\nrpi_boot_config_reboot: false\n```\n\n## Dependencies\n\nNone.\n\n## Example Playbook\n\n```yaml\n- hosts: raspberrypis\n  roles:\n      - { role: rpi_boot_config, boot_config_lines: ['gpu_mem=196'] }\n```\n\n## Changelog\n\n### 4.4.0\n\n* Add new role variable `rpi_boot_config_reboot: bool`\n* Update molecule and CI testing\n\n### 4.3.0\n\n* drop support for ansible older than 5.0\n* add test for Debian `bullseye`\n\n### 4.2.0\n\n* moved CI to GitHub Actions\n* drop support for ansible 2.9, python3.7\n\n### 4.1.0\n\n* upgraded CI tests to use python3.7+\n* upgraded molecule to version 3.x\n* drop support for ansible 2.8\n* add configurable path to boot config file\n\n### 4.0.0\n\n* renamed role to `rpi_boot_config`\n* drop support for ansible 2.7\n\n### 3.0.0\n\n* use ansible `reboot` module\n* drop support for ansible 2.5, 2.6\n\n### 2.0.0\n\n* drop support for python2\n* add support for ansible 2.9\n* add support for debian buster\n* upgraded ansible-lint\n\n### 1.1.1\n\n* introduce semver release numbering\n* expand tested OS to raspbian jessie, buster\n* switch to molecule testing framework\n\n### 1.1\n\n* added new, optional variable `boot_config_lines`\n\n### 1.0\n\n* initial release\n\n## License\n\nMIT / BSD\n\n## Author Information\n\nThis role was created in 2016 by Paul Kremer.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfothrill%2Fansible-role-rpi_boot_config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finfothrill%2Fansible-role-rpi_boot_config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfothrill%2Fansible-role-rpi_boot_config/lists"}