We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi there,
I receive the following error on Fedora Linux:
wg-quick: `/etc/wireguard/wg0.conf' does not exist
It seems to be the line chmod 600 /etc/wireguard.
chmod 600 /etc/wireguard
I fixed it through the following commands:
chmod 700 /etc/wireguard chmod 600 /etc/wireguard/wg0.conf
Not 100% sure if this is safe, thus not a pull request. In my opinion it should also protect the private key in wg0.conf or is there a difference?
The text was updated successfully, but these errors were encountered:
are you sure you didn't manually create that directory without +x by accident?
maybe it's a umask in your shell?
Sorry, something went wrong.
See line 212 of your script:
chmod 600 -R /etc/wireguard/
If I am not mistaken that sets 600 for everything? Should that maybe be replaced by:
chmod 700 /etc/wireguard chmod 600 /etc/wireguard/*
No branches or pull requests
Hi there,
I receive the following error on Fedora Linux:
It seems to be the line
chmod 600 /etc/wireguard
.I fixed it through the following commands:
Not 100% sure if this is safe, thus not a pull request. In my opinion it should also protect the private key in wg0.conf or is there a difference?
The text was updated successfully, but these errors were encountered: