--- - name: Update all packages to their latest version apt: name: "*" state: latest update_cache: yes - name: Install packages apt: name: [ 'git', ] state: present - name: Setup the database include_tasks: database.yml - name: Setup the webserver include_tasks: webserver.yml - name: Setup the gitea service include_tasks: gitea.yml