1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

gitea/tasks/install.yml: Note /library/gitea/bin/gitea-1.15 is ~102MB

This commit is contained in:
A Holt 2021-12-31 22:11:38 -05:00 committed by GitHub
parent 53adac868e
commit 56ce56bfa8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,10 +43,10 @@
msg: "Could not find a binary for the CPU architecture \"{{ ansible_architecture }}\""
when: gitea_iset_suffix == "unknown"
- name: Download Gitea binary {{ gitea_download_url }} to {{ gitea_install_path }} (0775, ~104 MB)
- name: Download Gitea binary {{ gitea_download_url }} to {{ gitea_install_path }} (0775, ~102 MB)
get_url:
url: "{{ gitea_download_url }}"
dest: "{{ gitea_install_path }}" # e.g. /library/gitea/bin/gitea-1.14
dest: "{{ gitea_install_path }}" # e.g. /library/gitea/bin/gitea-1.15
mode: 0775
timeout: "{{ download_timeout }}"