Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chaseconey/arpp
Ansible Raspberry Pi Provisioning
https://github.com/chaseconey/arpp
Last synced: 11 days ago
JSON representation
Ansible Raspberry Pi Provisioning
- Host: GitHub
- URL: https://github.com/chaseconey/arpp
- Owner: chaseconey
- Created: 2014-03-15T18:43:01.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-17T20:29:05.000Z (almost 10 years ago)
- Last Synced: 2024-11-13T20:42:13.887Z (2 months ago)
- Language: Shell
- Size: 203 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
arpp
-------------------------------------------Project status: In Progress
This project is supposed to be a very simple raspberry pi remote provisioning configuration. If you have to manage more than 1 raspberry pi or provision more than one, this might be for you.
## Why
I have been tasked with provisioning and maintaining 8 raspberry pis that simply host dashboards on a wall. This service will help jump start this process.
## How
These playbooks require Ansible 1.2.
Configure hosts in hosts file
```yml
[pis]
pi01
pi02
pi03
```Add ssh key to `roles/common/templates/authorized_keys.j2`
Make sure that the managed pi has the package `python-apt` before running ansible against it.
```bash
sudo apt-get install python-apt
```Run
```bash
ansible-playbook -i hosts site.yml
```