-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gitea tries to use /usr/bin as run dir #8552
Comments
Unfortunately Gitea has non-fhs compliant expectations which mean that just building from source and placing the binary in /usr/bin will not work. See "Changing the default CustomPath, CustomConf and AppWorkPath" in https://docs.gitea.io/en-us/install-from-source/ for how to set up the build environment to change the default locations so that Gitea will never look in the wrong place. Or Consider using the https://github.com/go-gitea/gitea/blob/master/contrib/fhs-compliant-script/gitea to shim the Gitea binary so that its environment is set up. Or Look at https://docs.gitea.io/en-us/specific-variables/ to see which environment variables you can set to tell Gitea to look elsewhere and/or https://docs.gitea.io/en-us/command-line/ to see the command line options. Please could you advise your package maintainer change their package to use the LDFLAGS replacement trick described or the fhs compliant script in order to prevent further confusion. Edit: the documentation is currently incorrect in calling this AppWorkDir it should be AppWorkPath. |
Looking at the arch Linux package information, I believe you are the maintainers of the Gitea package for arch Linux. If not I'm sorry for spamming you. Gitea in its default build assumes that it is run from the root of its directory structure and doesn't comply with the FHS leading to confusion if the binary is placed in You can workaround this with using environment variables, or since 1.9 command line options but it's a little surprising for users that it doesn't work the way they expect. Since 1.9, it's been possible to build Gitea in a way that means you can define these default directories within the binary file using an Please could you update your package to use one of these techniques. Unfortunately we cannot change the default build of Gitea to be FHS compliant without breaking too many users, but I have tried hard to make it possible to build it in a compliant manner and/or be able to shim the binary so it appears compliant. Thanks so much for continuing to package Gitea. Please do not hesitate to ask if you need further information. |
@zeripath Thanks for pinging. So just to be sure, it means we should add |
Damn! It should be AppWorkPath not dir. I'll send a PR to the docs to fix that sorry. |
OK, that did it. ;) I’ve pushed the new package. :) |
Thanks @ArchangeGabriel sorry the documentation is incorrect. In case you're interested the -X in the LDFLAGS simply changes the default value for the provided variable name. In this case we do a delicate dance with this value, setting it when you set environment variables or command line options but if it remains empty then it is set in the end to the program location. By setting it with LDFLAGS you always ensure that it has a default value to fall back on. Other go projects will likely be adjustable in similar ways even if their developers aren't aware of it. Sorry once again that the documentation is incorrect. |
@Martmists I'm gonna close this bug as when you get the updated package it should be fixed. |
git-svn-id: file:///srv/repos/svn-community/svn@516614 9fca08f4-af9d-4005-b8df-a31f2cc04f65
[x]
):Description
I installed gitea from the repositories using pacman, but whatever I did it always seemed to use /usr/bin as working dir instead of /var/lib/gitea
The text was updated successfully, but these errors were encountered: