Skip to content
Snippets Groups Projects
Verified Commit 009aa707 authored by Kristian Klausen's avatar Kristian Klausen :tada:
Browse files

Merge branch 'aur-fix-slow-ssh' into 'master'

aurweb: Make SSH faster by avoiding slow Poetry (~2,5 sec faster)

See merge request !612
parents 3b53daa5 b15ac838
No related branches found
No related tags found
1 merge request!612aurweb: Make SSH faster by avoiding slow Poetry (~2,5 sec faster)
Pipeline #24694 passed
......@@ -177,6 +177,8 @@
command: poetry install
args:
chdir: "{{ aurweb_dir }}"
environment:
POETRY_VIRTUALENVS_IN_PROJECT: "true"
become: true
become_user: "{{ aurweb_user }}"
when: release.changed or aurweb_installed.rc != 0
......
#!/bin/bash
cd "{{ aurweb_dir }}"
exec poetry run aurweb-git-auth "$@"
exec "{{ aurweb_dir }}/.venv/bin/aurweb-git-auth" "$@"
#!/bin/bash
cd "{{ aurweb_dir }}"
exec poetry run aurweb-git-serve "$@"
exec "{{ aurweb_dir }}/.venv/bin/aurweb-git-serve" "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment