2024-11-22 20:21:56 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Generate an OpenSSH keypair for gitea deploy usage
|
|
|
|
community.crypto.openssh_keypair:
|
|
|
|
path: "{{ deploy_key_file }}"
|
|
|
|
|
|
|
|
- name: Wait for confirmation
|
|
|
|
ansible.builtin.pause:
|
|
|
|
prompt: Please confirm that you've distributed the public key to all repositories! Press return to continue. Press Ctrl+c and then "a" to abort
|
|
|
|
|
2024-12-07 00:26:25 +01:00
|
|
|
- name: Install required packages
|
|
|
|
ansible.builtin.apt:
|
|
|
|
name:
|
|
|
|
- php-ldap
|
|
|
|
|
2024-11-22 20:21:56 +01:00
|
|
|
- name: Include provisioning tasks
|
|
|
|
ansible.builtin.include_tasks: yealink_provisioning.yml
|
|
|
|
|
2024-11-30 12:51:55 +01:00
|
|
|
- name: Include XML-Utilities tasks
|
|
|
|
ansible.builtin.include_tasks: yealink_utilities.yml
|