-
Notifications
You must be signed in to change notification settings - Fork 112
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
Refactor EOSFS to use cbox / daemon instead of root #4977
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would create a changelog item based on your changes. |
jessegeens
force-pushed
the
fix/stat-as-daemon
branch
6 times, most recently
from
November 29, 2024 09:33
a0fec9d
to
70234b6
Compare
diocas
reviewed
Dec 3, 2024
jessegeens
force-pushed
the
fix/stat-as-daemon
branch
5 times, most recently
from
December 9, 2024 12:52
53aeb51
to
21135ae
Compare
* We now do not use root anymore in eos-grpc, but use the user, daemon or cbox * Bugfix: when EOS token is provided, pass this on in the gRPC request * For creating version folders, we impersonate the owner * Some restructuring
jessegeens
force-pushed
the
fix/stat-as-daemon
branch
from
December 9, 2024 13:19
21135ae
to
e25e4b9
Compare
diocas
requested changes
Dec 9, 2024
jessegeens
force-pushed
the
fix/stat-as-daemon
branch
from
December 9, 2024 16:26
e25e4b9
to
de10e81
Compare
jessegeens
force-pushed
the
fix/stat-as-daemon
branch
from
December 9, 2024 16:37
de10e81
to
fdfd2d1
Compare
…gic to script * Replaced home creation function with external script * Removed shadow namespace and related code * eosfs: also removed user quota logic, externalized to the create_home_hook script
jessegeens
force-pushed
the
fix/stat-as-daemon
branch
2 times, most recently
from
December 10, 2024 09:58
876ccd6
to
930fefe
Compare
jessegeens
force-pushed
the
fix/stat-as-daemon
branch
from
December 10, 2024 10:00
930fefe
to
e172a77
Compare
diocas
approved these changes
Dec 10, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently, the EOS drivers use root authentication for many different operations. This has now been changed to use one of the following, depending on the operation:
Note that home creation was tackled in sub-PR #4984