# vim: ft=yaml.ansible --- - name: Set hostname hostname: name: "{{ hostname }}" - name: Set timezone timezone: name: "{{ timezone }}" - name: Upgrade system packages apt: update_cache: true upgrade: full - name: Install packages via apt apt: name: "{{ pkgs }}" state: present vars: pkgs: - apparmor - curl - git - haveged - needrestart - python3-pip - ufw - unattended-upgrades - name: Clone apt-update-push git: dest: "/home/{{ ansible_user }}/apt-update-push" repo: https://github.com/samsapti/apt-update-push.git clone: true update: true single_branch: true depth: 1 become: false notify: apt-update-push - name: Clone pi-fan-controller git: dest: "/home/{{ ansible_user }}/pi-fan-controller" repo: https://github.com/Howchoo/pi-fan-controller.git clone: true update: false single_branch: true depth: 1 become: false notify: pi-fan-controller