I decided I would install gitlab on my own server. It’s running debian 10. I followed this guidehttps://about.gitlab.com/install/#debian, but when I ran this command:
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh | sudo bash
I got the following:
X@Y:~# curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh | sudo bash
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 5933 100 5933 0 0 22473 0 --:--:-- --:--:-- --:--:-- 22473
curl: (23) Failed writing body (0 != 5933)
Instead using the following command:
source <(curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh)
made everything work correctly. Not sure if this happened to anyone else, but it might be good to update the instructions.