You are here
ammonjg7 - Sat, 2022/06/04 - 08:23
It didn't present the webpage indicated by the preinstall screen.
Then I found that the gpg key is expired, had to refresh it using the following.
awk '/deb \[signed-by=/{
pubkey = $2;
sub(/\[signed-by=/, "", pubkey);
sub(/\]$/, "", pubkey);
print pubkey
}' /etc/apt/sources.list.d/gitlab-?e.list | \
while read line; do
curl -s "https://packages.gitlab.com/gpg.key" | gpg --dearmor > $line
done
After that, it still didn't work and while processing an upgrade, it wanted to upgrade to gitlab version 15 and kept erroring out. At that point I just deleted the container and posted here.
Moving on to gitea
Forum:
Tags:
I haven't tested it, but the command you note should have worked
Firstly, apologies on such a slow response...
I haven't tested it, but the command you note should (at least by my limited understanding of awk) have worked. FWIW, it should be getting the key path from the gitlab-ce.list file and downloading the new key to the same location. It may have failed if the gitlab-ce.list file is named something else (it shouldn't be, but is possible).
We've had tons of issues maintaining GitLab, hence why the appliance is not as up to date as it ideally should be...
Having said all that, unless you need all the bells and whistles that GitLab provides, Gitea is probably a better option anyway. It needs significantly less resources and will generally give a much better user experience.
Hi Jeremy,
Add new comment