Home
Softono

Ansible Role Raspberry Pi

Open source MIT
130
Stars
24
Forks
1
Issues
10
Watchers
7 months
Last Commit

 About Ansible Role Raspberry Pi

Configures a Raspberry Pi (running Raspbian).

Platforms

Web Self-hosted

Need Help Installing Ansible Role Raspberry Pi?

We provide expert installation service for this software. Our team will install, configure, and secure Ansible Role Raspberry Pi on your server. plans start at just $30.

Ansible Role Raspberry Pi

View on GitHub

Ansible Role: Raspberry Pi

CI

Configures a Raspberry Pi (running Raspbian).

This role will reconfigure certain options in the Raspberry Pi configuration files, but will not automatically restart the Pi to make all the changes take effect. For most changes, you'll need to make sure to reboot your Pi(s) after this role runs.

Requirements

None.

Role Variables

Available variables are listed below, along with default values (see defaults/main.yml):

raspberry_pi_boot_config_options:
  # Set the GPU memory split value.
  - regexp: "^#?gpu_mem"
    line: "gpu_mem=16"
  # Enable 1200ma USB current on newer model Pis.
  - regexp: "^#?max_usb_current"
    line: "max_usb_current=1"

Use Ansible's lineinfile module to ensure certain settings are configured inside /boot/config.txt.

raspberry_pi_rc_local_options:
  # Disable HDMI on startup (for power savings).
  - regexp: "^/usr/bin/tvservice"
    line: "/usr/bin/tvservice -o"

Use Ansible's lineinfile module to ensure certain settings are configured inside /etc/rc.local.

Dependencies

None.

Example Playbook

- hosts: pi
  vars_files:
    - vars/main.yml
  roles:
    - { role: geerlingguy.raspberry-pi }

License

MIT / BSD

Author Information

This role was created in 2015 by Jeff Geerling, author of Ansible for DevOps.