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.
|
|
|
---
|
|
|
|
- name: Ensures basic scripts & configs set up for Raspberry Pis
|
|
|
|
hosts: raspberries
|
|
|
|
tasks:
|
|
|
|
- name: Include the rpi_scripts role
|
|
|
|
include_role:
|
|
|
|
name: rpi_scripts
|
|
|
|
- name: Include the rpi_watchdog role
|
|
|
|
include_role:
|
|
|
|
name: rpi_watchdog
|
|
|
|
- name: Include configure_vim role
|
|
|
|
include_role:
|
|
|
|
name: configure_vim
|
|
|
|
- name: Include profile aliases
|
|
|
|
include_role:
|
|
|
|
name: profile_aliases
|
|
|
|
- name: Include basic package list
|
|
|
|
include_role:
|
|
|
|
name: basic_setup
|
|
|
|
- name: Configure pibox extras
|
|
|
|
include_role:
|
|
|
|
name: pibox_basics
|
|
|
|
when: ansible_hostname == 'piparcel'
|