17 lines
269 B
YAML
17 lines
269 B
YAML
|
---
|
||
|
|
||
|
- name: Install NextCloud on a Debian 12 (Bookworm) cloud image.
|
||
|
hosts: servers
|
||
|
become: true
|
||
|
vars_files:
|
||
|
- vars/vars.yml
|
||
|
roles:
|
||
|
- system
|
||
|
- sshd
|
||
|
- generate_passwords
|
||
|
- apache2
|
||
|
- php
|
||
|
- mariadb
|
||
|
- nextcloud
|
||
|
- show_passwords
|