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.
22 lines
378 B
22 lines
378 B
---
|
|
- 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
|
|
|