aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Improve IP parsing (fix #204)Stanislas Lange2021-03-181-6/+8
|
* Fix HOME_DIR check (#194)Stanislas2021-03-101-4/+12
| | | Fix #189
* Fix unnecessary reinstall of packages (#172)Patrick M2021-01-021-3/+3
|
* Update AdGuard default public DNS addresses (#162)glenn wolfe2020-12-081-2/+2
| | | | - Since September 2020, AdGuard public DNS servers have moved to new address. See here - https://adguard.com/en/blog/adguard-dns-new-addresses.html
* Forbid interface names exceeding 15 chars in length (#157)Julian Gaal2020-11-241-3/+3
|
* Add confirmation before removing WireGuard (#156)randomshell2020-11-141-33/+40
|
* Bump ludeeus/action-shellcheck from 0.5.0 to 1.0.0 (#152)dependabot[bot]2020-10-271-1/+1
| | | | | | | | | Bumps [ludeeus/action-shellcheck](https://github.com/ludeeus/action-shellcheck) from 0.5.0 to 1.0.0. - [Release notes](https://github.com/ludeeus/action-shellcheck/releases) - [Commits](https://github.com/ludeeus/action-shellcheck/compare/0.5.0...d586102c117f97e63d7e3b56629d269efc9a7c60) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* readme: update badgeStanislas2020-10-191-2/+2
|
* ci: update triggersStanislas Lange2020-10-101-1/+1
|
* Add forwarding eth0 -> wg0 (#132)Stefan A2020-10-101-2/+2
| | | | | If the FORWARD chain policy defaults to DENY, it must explicitly allow traffic from the external to the wg interface. To solve this, the patch just adds iptables -A FORWARD -i ${SERVER_PUB_NIC} -o ${SERVER_WG_NIC} -j ACCEPT;
* centos: update installation processStanislas Lange2020-10-101-5/+7
| | | | | | From https://www.wireguard.com/install/. Using kmod instead of dkms. Seems to work without reboot now. Close #118 #111 #147
* arch: Install LTS kernel headers when running LTS kernel (#135)Farzin Monsef2020-10-101-1/+7
|
* Add badges to READMEStanislas2020-10-021-0/+3
|
* Readme updated to include Hetzner in Finland (#141)pyramidenkoenig2020-09-231-1/+1
| | | Hetzner also has their own Datacenter in Helsinki, Finland. Mentioning this for completeness.
* remove duplicate if -d /etc/debian_version (#136)xiagw2020-09-211-6/+4
|
* Merge pull request #114 from Serpentiel/patch-1Stanislas2020-08-081-2/+2
|\ | | | | Updated client name input restrictions and hint
| * Updated client name input restrictions and hintAleksander2020-08-051-2/+2
|/
* Merge pull request #112 from randomshell/rebootStanislas2020-08-041-1/+1
|\ | | | | Fix reboot message
| * Fix reboot messagerandomshell2020-08-041-1/+1
|/
* Remove PPA removal for UbuntuStanislas Lange2020-08-041-1/+0
| | | | An oversight from https://github.com/angristan/wireguard-install/pull/109
* Shellcheck: move excludes to action envStanislas Lange2020-08-032-22/+11
|
* Merge pull request #109 from angristan:ubuntu-no-ppaStanislas2020-08-032-4/+1
|\ | | | | Ubuntu: remove PPA, use native packages
| * Ubuntu: remove PPA, use native packagesStanislas Lange2020-08-032-4/+1
|/ | | | Fix #108
* Update READMEStanislas Lange2020-08-031-10/+11
|
* Format with shfmtStanislas Lange2020-08-031-3/+3
|
* Add clientRevoke() and improve addClient() (#94)randomshell2020-08-031-37/+104
| | | | | | | | | | Added `clientRevoke()` based on openvpn-install repo, fixes #4 Some other changes were required for this to work: - client names aren't random anymore - client names are saved above the `[Peer]` block of the server configuration file to keep track of them - checks added for existing IPv4, IPv6 and client name. I used `until` to ask the user again if this is the case to not make him loose its work if, for example, the client name and IPv4 inserted are unique but not the IPv6. - using `until` instead of `exit` isn't idempotent but it's more user friendly. This will be a future goal. - default options should be safe to use so the suggestion for the client IP is automatically incremented. The subnet of `SERVER_WG_IPV` is hard-coded inside `CLIENT_WG_IPV` for obvious reasons
* Add uninstall feature (#88)Navratan Gupta2020-07-311-3/+58
| | | | | | Fix #2 Co-authored-by: Stanislas Lange <stanislas.lange@pm.me> Co-authored-by: randomshell <randshell@protonmail.com>
* Format with shfmtStanislas Lange2020-07-311-19/+19
|
* Refactor script (#92)randomshell2020-07-312-202/+270
| | | | | | | | | | | | | | | | | | - cleaned some minor code - use IPv6 if IPv4 isn't available - add input validations, fixes #86 . - assign secondary DNS to primary DNS value if it's empty. Fixes #68 - use `$SERVER_WG_IPV4` and `$SERVER_WG_IPV6` when suggesting the client IP - save user DNS to `params` file and apply it to all clients, removing support for customizing DNS for individual clients. If this is a problem we can add again the code to allow customization but maybe use the sourced DNS as a suggestion for clients that need a different one - add shellcheck ignores, needed for IDE that have shellcheck support - escaped variables to `"${var}"` style - updated README to reflect changes - fixed the kernel mismatch issue on CentOS by updating the kernel https://github.com/angristan/wireguard-install/issues/95#issuecomment-653696198. Fedora might need this change too - Use `firewall-cmd` only if `firewalld` is running. Fixes #95 - Fix the client's subnet mask. Fixes #87 - Save the client configuration in the correct `$HOME`. Fixes #96 Co-authored-by: Chris Lewicki <chris@lewicki.dev> Co-authored-by: Stanislas <angristan@pm.me>
* Merge pull request #106 from angristan/debian-backportsStanislas2020-07-301-5/+14
|\ | | | | Fix Debian installation: use backports
| * Fix Debian installation: use backportsStanislas Lange2020-07-291-5/+14
| | | | | | | | And limit to Debian 10. Fix #101
* | Merge pull request #105 from ↵Stanislas2020-07-291-1/+1
|\ \ | | | | | | | | | | | | angristan/dependabot/github_actions/ludeeus/action-shellcheck-0.5.0 Bump ludeeus/action-shellcheck from 0.4.1 to 0.5.0
| * | Bump ludeeus/action-shellcheck from 0.4.1 to 0.5.0dependabot[bot]2020-07-291-1/+1
|/ / | | | | | | | | | | | | Bumps [ludeeus/action-shellcheck](https://github.com/ludeeus/action-shellcheck) from 0.4.1 to 0.5.0. - [Release notes](https://github.com/ludeeus/action-shellcheck/releases) - [Commits](https://github.com/ludeeus/action-shellcheck/compare/0.4.1...c489c81f79527f818be72b97b918b06e75eaee6d) Signed-off-by: dependabot[bot] <support@github.com>
* | Merge pull request #104 from iandk/patch-2Stanislas2020-07-271-2/+2
|\ \ | |/ |/| Add colon
| * Add colonIan2020-07-271-2/+2
|/
* Merge pull request #99 from robiiinos/misc/dependabotStanislas2020-07-241-0/+10
|\ | | | | Add Dependabot
| * Add Dependabotrobiiinos2020-07-181-0/+10
| |
* | Merge pull request #98 from robiiinos/misc/actionsStanislas2020-07-241-3/+5
|\ \ | |/ |/| Update GitHub Actions
| * Update GitHub Actionsrobiiinos2020-07-181-3/+5
|/
* Merge pull request #85 from randomshell/patch-1Stanislas2020-06-271-3/+3
|\ | | | | Change check for previously installed wireguard
| * Change check for previously installed wireguardrandomshell2020-06-261-3/+3
|/
* Arch: do not install wireguard-arch (#84)Deface2020-06-141-1/+1
|
* ci(workflow): refactor and add shmftStanislas Lange2020-04-282-13/+26
|
* style(script) format with shfmtStanislas Lange2020-04-281-118/+120
|
* chore(args): rename add_client to add-clientStanislas Lange2020-04-282-3/+3
|
* Mitigate Debian packaging issueStanislas Lange2020-04-261-0/+1
| | | | | | bc is missing as dependency: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=956869 fix #70
* Generate unique pre-shared key for each client (#69)Jelle Dekker2020-04-221-4/+4
|
* Add add_client feature to READMEStanislas Lange2020-04-081-1/+9
|
* Add support for adding multiple clients (#58)Stanislas2020-04-081-61/+88
| | | | | | | | | This commit puts the client creation logic into a function. By running the script followed by `add_client`, the user will be asked a few questions and a new peer will be added. Removing client is **not** supported. The client files have random names. Fix for https://github.com/angristan/wireguard-install/issues/3
* Add missing colons to setup questionsStanislas Lange2020-04-031-5/+5
| | | | Signed-off-by: Stanislas Lange <angristan@pm.me>