-
Notifications
You must be signed in to change notification settings - Fork 570
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
profiles: wget: allow ~/.local/share/wget #6542
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Distributions started to replace wget with wget2 (I.e. wget
and wget2
are the same binary where one of them is a symlink to the other).
We should reorganize our profile for this fact.
Can you also add .config/wget
and remove the then doubled noblacklists from wget2.profile.
wget appears to require access to this directory for HSTS & HPKP. Without access to this directory, I get the following error when running wget: Failed to read HSTS data Failed to read HPKP data Failed to write HSTS file This fixes it.
Good catch.
Since this is a self-contained fix, how about merging this as is and then I |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this is a self-contained fix, how about merging this as is and then I
open a PR to refactor them after this PR?
If you do, I approve.
According to @rusty-snake[1]: > Distributions started to replace wget with wget2 (I.e. `wget` and > `wget2` are the same binary where one of them is a symlink to the > other). So move all custom entries (other than `private-bin`) from wget2.profile into wget.profile and turn wget2.profile into more of a redirect to wget.profile. [1] netblue30#6542 (review)
According to @rusty-snake[1]: > Distributions started to replace wget with wget2 (I.e. `wget` and > `wget2` are the same binary where one of them is a symlink to the > other). So move all custom entries (other than `private-bin`) from wget2.profile into wget.profile and turn wget2.profile into more of a redirect to wget.profile. [1] netblue30#6542 (review)
According to @rusty-snake[1]: > Distributions started to replace wget with wget2 (I.e. `wget` and > `wget2` are the same binary where one of them is a symlink to the > other). So move all custom entries (other than `private-bin`) from wget2.profile into wget.profile and turn wget2.profile into more of a redirect to wget.profile. [1] #6542 (review)
wget appears to require access to this directory for HSTS & HPKP.
Without access to this directory, I get the following error when running wget:
This fixes it.