aboutsummaryrefslogtreecommitdiffstats
path: root/roles/raspbian/tasks/main.yml
blob: 96fce1cfa84195e9180ba9454839a6139a3b34d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---
- import_tasks: apt.yml
  tags: apt
- import_tasks: networkd.yml
  tags: networkd
- import_tasks: remove_pi.yml
  when: >
    (ansible_user is not defined or ansible_user != 'pi') and
    (ansible_ssh_user is not defined or ansible_ssh_user != 'pi')
  tags: remove_pi

# vim: set ts=2 sw=2 et: