Compare commits

...

2 commits

Author SHA1 Message Date
491378365e Enable pipelining optimization in ansible.cfg
My understanding is, this is off by default for higher compatibility
rates… but in our case, it sped up this playbook from 3min to 1min.
Neat!
2024-09-06 10:51:56 -07:00
ae79ba4962 Upgrade to Forgejo v8.0.3 2024-09-06 10:50:43 -07:00
2 changed files with 5 additions and 2 deletions

View file

@ -3,3 +3,6 @@ inventory = inventory.cfg
[privilege_escalation]
become_ask_pass = True
[ssh_connection]
pipelining = True

View file

@ -7,9 +7,9 @@
tasks:
- name: Download Forgejo binary to /usr/local/bin (and verify its checksum)
get_url:
url: https://codeberg.org/forgejo/forgejo/releases/download/v7.0.3/forgejo-7.0.3-linux-amd64
url: https://codeberg.org/forgejo/forgejo/releases/download/v8.0.3/forgejo-8.0.3-linux-amd64
dest: /usr/local/bin/forgejo
checksum: "sha256:7e73088a5226c4d061dccb21b3f890fa1106e4924278e7128463fb8d15f147cb"
checksum: "sha256:f192b654885ea8ad9610d6e519892b2d01def5282a1490beb3448ea764eed6af"
mode: "755"
notify:
- Restart Forgejo