Don't ask for forgejo_dump_path, just deploy the repos if the path was given

This commit is contained in:
Tunui Franken 2025-01-31 21:45:33 +01:00
parent 023ff35ac6
commit d866766ea9
2 changed files with 1 additions and 18 deletions

View file

@ -39,6 +39,7 @@
- name: Include repos tasks - name: Include repos tasks
ansible.builtin.include_tasks: repos.yml ansible.builtin.include_tasks: repos.yml
when: forgejo_dump_path is defined
- name: Include ssh tasks - name: Include ssh tasks
ansible.builtin.include_tasks: ssh.yml ansible.builtin.include_tasks: ssh.yml

View file

@ -1,12 +1,5 @@
--- ---
- name: Ask to push latest forgejo_dump zipfile
when: forgejo_dump_path is not defined
ansible.builtin.pause:
prompt: "Local path to forgejo dump, so we can push it [leave empty to not push]"
echo: true
register: forgejo_dump_path
- name: Push latest forgejo dump zipfile (no user input) - name: Push latest forgejo dump zipfile (no user input)
become: true become: true
ansible.builtin.copy: ansible.builtin.copy:
@ -15,17 +8,6 @@
owner: git owner: git
group: git group: git
mode: 0640 mode: 0640
when: forgejo_dump_path.user_input is not defined
- name: Push latest forgejo dump zipfile (user input)
become: true
ansible.builtin.copy:
src: "{{ forgejo_dump_path.user_input }}"
dest: "{{ forgejo_run_dir }}/forgejo-dumps/{{ forgejo_dump_path.user_input | basename }}"
owner: git
group: git
mode: 0640
when: forgejo_dump_path.user_input is defined and forgejo_dump_path.user_input != ''
- name: Find all forgejo dumps on the server - name: Find all forgejo dumps on the server
become: true become: true