├── .gitignore ├── LICENSE ├── README.md ├── ansible.cfg ├── bootstrap.yml ├── group_vars └── all │ ├── vars.yml │ └── vault.yml ├── host_vars ├── rpi-kph.yml ├── rpi-makuuhuone.yml └── rpi-olohuone.yml ├── hosts ├── keys └── .gitignore ├── music.yml ├── onewire.yml ├── roles ├── alsa │ ├── handlers │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── external-hdd │ └── tasks │ │ └── main.yml ├── firewall │ └── tasks │ │ └── main.yml ├── influxdb │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── influxdb.conf.j2 ├── mpd-master │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ ├── mpd-cover-art.conf.j2 │ │ └── mpd.conf.j2 ├── onewire │ └── tasks │ │ └── main.yml ├── raspbian_bootstrap │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── Vagrantfile │ ├── defaults │ │ └── main.yml │ ├── files │ │ ├── bashrc │ │ ├── etc │ │ │ └── apt │ │ │ │ ├── apt.conf.d │ │ │ │ └── 90noextrapackages │ │ │ │ └── preferences.d │ │ │ │ └── systemd │ │ ├── gitconfig │ │ ├── screenrc │ │ └── vimrc │ ├── handlers │ │ └── main.yml │ ├── meta │ │ ├── .galaxy_install_info │ │ └── main.yml │ ├── tasks │ │ ├── apt.yml │ │ ├── hostname.yml │ │ ├── locale.yml │ │ ├── main.yml │ │ ├── nosystemd.yml │ │ ├── ntp.yml │ │ ├── prepare.yml │ │ ├── system.yml │ │ ├── timezone.yml │ │ ├── unbound.yml │ │ └── user.yml │ ├── templates │ │ └── etc │ │ │ ├── default │ │ │ └── locale.j2 │ │ │ ├── hosts.j2 │ │ │ ├── ntp.conf.j2 │ │ │ ├── openntpd │ │ │ └── ntpd.conf.j2 │ │ │ └── sudoers.d │ │ │ └── ansible.j2 │ ├── tests │ │ ├── debian-jessie.Dockerfile │ │ ├── debian-wheezy.Dockerfile │ │ ├── inventory │ │ ├── test-travis.sh │ │ ├── test-travis.yml │ │ └── test.yml │ └── vars │ │ ├── debian.yml │ │ ├── devuan.yml │ │ ├── jessie.yml │ │ ├── main.yml │ │ ├── raspbian.yml │ │ ├── stretch.yml │ │ └── wheezy.yml ├── ruuvitag-influxdb │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── ruuvitag-influxdb.py.j2 ├── snapcast-client │ ├── handlers │ │ └── main.yml │ └── tasks │ │ └── main.yml ├── snapcast-server │ └── tasks │ │ └── main.yml ├── tempreader-influxdb │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── readtemp-influxdb.py.j2 ├── tempreader-rrdtool │ ├── files │ │ └── readtemp-rrd.py │ └── tasks │ │ └── main.yml ├── tempsensor-config │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── sensors.json.j2 └── wifi │ ├── handlers │ └── main.yml │ └── tasks │ └── main.yml ├── ruuvitag-influxdb.yml ├── tempreader-influxdb.yml └── tempreader-rrdtool.yml /.gitignore: -------------------------------------------------------------------------------- 1 | *.retry 2 | .vault-password 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/ansible.cfg -------------------------------------------------------------------------------- /bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/bootstrap.yml -------------------------------------------------------------------------------- /group_vars/all/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/group_vars/all/vars.yml -------------------------------------------------------------------------------- /group_vars/all/vault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/group_vars/all/vault.yml -------------------------------------------------------------------------------- /host_vars/rpi-kph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/host_vars/rpi-kph.yml -------------------------------------------------------------------------------- /host_vars/rpi-makuuhuone.yml: -------------------------------------------------------------------------------- 1 | --- 2 | enable_wifi: True 3 | -------------------------------------------------------------------------------- /host_vars/rpi-olohuone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/host_vars/rpi-olohuone.yml -------------------------------------------------------------------------------- /hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/hosts -------------------------------------------------------------------------------- /keys/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /music.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/music.yml -------------------------------------------------------------------------------- /onewire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/onewire.yml -------------------------------------------------------------------------------- /roles/alsa/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/alsa/handlers/main.yml -------------------------------------------------------------------------------- /roles/alsa/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/alsa/tasks/main.yml -------------------------------------------------------------------------------- /roles/external-hdd/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/external-hdd/tasks/main.yml -------------------------------------------------------------------------------- /roles/firewall/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/firewall/tasks/main.yml -------------------------------------------------------------------------------- /roles/influxdb/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/influxdb/handlers/main.yml -------------------------------------------------------------------------------- /roles/influxdb/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/influxdb/tasks/main.yml -------------------------------------------------------------------------------- /roles/influxdb/templates/influxdb.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/influxdb/templates/influxdb.conf.j2 -------------------------------------------------------------------------------- /roles/mpd-master/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/mpd-master/handlers/main.yml -------------------------------------------------------------------------------- /roles/mpd-master/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/mpd-master/tasks/main.yml -------------------------------------------------------------------------------- /roles/mpd-master/templates/mpd-cover-art.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/mpd-master/templates/mpd-cover-art.conf.j2 -------------------------------------------------------------------------------- /roles/mpd-master/templates/mpd.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/mpd-master/templates/mpd.conf.j2 -------------------------------------------------------------------------------- /roles/onewire/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/onewire/tasks/main.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant* 2 | *.swp 3 | *.retry 4 | -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/.travis.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/LICENSE -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/README.md -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/Vagrantfile -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/defaults/main.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/files/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/files/bashrc -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/files/etc/apt/apt.conf.d/90noextrapackages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/files/etc/apt/apt.conf.d/90noextrapackages -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/files/etc/apt/preferences.d/systemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/files/etc/apt/preferences.d/systemd -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/files/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/files/gitconfig -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/files/screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/files/screenrc -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/files/vimrc: -------------------------------------------------------------------------------- 1 | " Generated by Ansible 2 | syntax on 3 | set bg=dark 4 | -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/handlers/main.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Fri Sep 2 18:33:47 2016', version: 1.2.0} 2 | -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/meta/main.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tasks/apt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tasks/apt.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tasks/hostname.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tasks/hostname.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tasks/locale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tasks/locale.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tasks/main.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tasks/nosystemd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tasks/nosystemd.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tasks/ntp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tasks/ntp.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tasks/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tasks/prepare.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tasks/system.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tasks/system.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tasks/timezone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tasks/timezone.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tasks/unbound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tasks/unbound.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tasks/user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tasks/user.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/templates/etc/default/locale.j2: -------------------------------------------------------------------------------- 1 | LANG="{{ dbs_default_locale }}" 2 | -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/templates/etc/hosts.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/templates/etc/hosts.j2 -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/templates/etc/ntp.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/templates/etc/ntp.conf.j2 -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/templates/etc/openntpd/ntpd.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/templates/etc/openntpd/ntpd.conf.j2 -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/templates/etc/sudoers.d/ansible.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/templates/etc/sudoers.d/ansible.j2 -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tests/debian-jessie.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tests/debian-jessie.Dockerfile -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tests/debian-wheezy.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tests/debian-wheezy.Dockerfile -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tests/test-travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tests/test-travis.sh -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tests/test-travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tests/test-travis.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/tests/test.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/vars/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/vars/debian.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/vars/devuan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/vars/devuan.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/vars/jessie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/vars/jessie.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/vars/main.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/vars/raspbian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/vars/raspbian.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/vars/stretch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/vars/stretch.yml -------------------------------------------------------------------------------- /roles/raspbian_bootstrap/vars/wheezy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/raspbian_bootstrap/vars/wheezy.yml -------------------------------------------------------------------------------- /roles/ruuvitag-influxdb/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/ruuvitag-influxdb/tasks/main.yml -------------------------------------------------------------------------------- /roles/ruuvitag-influxdb/templates/ruuvitag-influxdb.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/ruuvitag-influxdb/templates/ruuvitag-influxdb.py.j2 -------------------------------------------------------------------------------- /roles/snapcast-client/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/snapcast-client/handlers/main.yml -------------------------------------------------------------------------------- /roles/snapcast-client/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/snapcast-client/tasks/main.yml -------------------------------------------------------------------------------- /roles/snapcast-server/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/snapcast-server/tasks/main.yml -------------------------------------------------------------------------------- /roles/tempreader-influxdb/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/tempreader-influxdb/tasks/main.yml -------------------------------------------------------------------------------- /roles/tempreader-influxdb/templates/readtemp-influxdb.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/tempreader-influxdb/templates/readtemp-influxdb.py.j2 -------------------------------------------------------------------------------- /roles/tempreader-rrdtool/files/readtemp-rrd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/tempreader-rrdtool/files/readtemp-rrd.py -------------------------------------------------------------------------------- /roles/tempreader-rrdtool/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/tempreader-rrdtool/tasks/main.yml -------------------------------------------------------------------------------- /roles/tempsensor-config/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/tempsensor-config/tasks/main.yml -------------------------------------------------------------------------------- /roles/tempsensor-config/templates/sensors.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/tempsensor-config/templates/sensors.json.j2 -------------------------------------------------------------------------------- /roles/wifi/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/wifi/handlers/main.yml -------------------------------------------------------------------------------- /roles/wifi/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/roles/wifi/tasks/main.yml -------------------------------------------------------------------------------- /ruuvitag-influxdb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/ruuvitag-influxdb.yml -------------------------------------------------------------------------------- /tempreader-influxdb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/tempreader-influxdb.yml -------------------------------------------------------------------------------- /tempreader-rrdtool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhietala/raspberry-ansible/HEAD/tempreader-rrdtool.yml --------------------------------------------------------------------------------