Ansible playbook for configuring a fresh install of Raspbian
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Glenn K. Lockwood fb388d02a1 a little better documentation 7 years ago
roles/common initial commit 7 years ago
README.md a little better documentation 7 years ago
hosts initial commit 7 years ago
site.yml initial commit 7 years ago

README.md

Raspberry Pi Ansible

Glenn K. Lockwood, August 2017

Introduction

This is an Ansible configuration that configures a fresh Raspbian installation on Raspberry Pi. This is very much a work in progress and not intended to be used by anyone but me.

Bootstrapping on Raspbian

If you want to use these playbooks to make a Raspberry Pi self-configure, install Ansible by doing the following:

# apt-get install ansible
# pip install --user ansible
# ssh-keygen
# ssh-copy-id localhost

You can ensure that Ansible is able to configure using the following:

$ ansible -i hosts all -m ping
$ ansible -i hosts -u pi --sudo-user root all -a "/usr/bin/id -u"