Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Merge pull request #99 from robiiinos/misc/dependabot | Stanislas | 2020-07-24 | 1 | -0/+10 | |
|\ | | | | | Add Dependabot | |||||
| * | Add Dependabot | robiiinos | 2020-07-18 | 1 | -0/+10 | |
| | | ||||||
* | | Merge pull request #98 from robiiinos/misc/actions | Stanislas | 2020-07-24 | 1 | -3/+5 | |
|\ \ | |/ |/| | Update GitHub Actions | |||||
| * | Update GitHub Actions | robiiinos | 2020-07-18 | 1 | -3/+5 | |
|/ | ||||||
* | Merge pull request #85 from randomshell/patch-1 | Stanislas | 2020-06-27 | 1 | -3/+3 | |
|\ | | | | | Change check for previously installed wireguard | |||||
| * | Change check for previously installed wireguard | randomshell | 2020-06-26 | 1 | -3/+3 | |
|/ | ||||||
* | Arch: do not install wireguard-arch (#84) | Deface | 2020-06-14 | 1 | -1/+1 | |
| | ||||||
* | ci(workflow): refactor and add shmft | Stanislas Lange | 2020-04-28 | 2 | -13/+26 | |
| | ||||||
* | style(script) format with shfmt | Stanislas Lange | 2020-04-28 | 1 | -118/+120 | |
| | ||||||
* | chore(args): rename add_client to add-client | Stanislas Lange | 2020-04-28 | 2 | -3/+3 | |
| | ||||||
* | Mitigate Debian packaging issue | Stanislas Lange | 2020-04-26 | 1 | -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 Dekker | 2020-04-22 | 1 | -4/+4 | |
| | ||||||
* | Add add_client feature to README | Stanislas Lange | 2020-04-08 | 1 | -1/+9 | |
| | ||||||
* | Add support for adding multiple clients (#58) | Stanislas | 2020-04-08 | 1 | -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 questions | Stanislas Lange | 2020-04-03 | 1 | -5/+5 | |
| | | | | Signed-off-by: Stanislas Lange <angristan@pm.me> | |||||
* | Prompt with random port during setup (#64) | randomshell | 2020-04-03 | 1 | -1/+2 | |
| | ||||||
* | Make README more friendly | Stanislas Lange | 2020-03-27 | 1 | -9/+11 | |
| | ||||||
* | Fix shellcheck | Stanislas Lange | 2020-03-21 | 2 | -4/+4 | |
| | ||||||
* | Use native WireGuard in Fedora >= 32 + support firewalld (#55) | Andrew Prokhorenkov | 2020-03-21 | 1 | -7/+19 | |
| | ||||||
* | Fix shellcheck | Stanislas Lange | 2020-03-21 | 2 | -2/+2 | |
| | ||||||
* | Add warning on Fedora/CentOS when WG is not running because of kernel ↵ | Stanislas Lange | 2020-03-21 | 1 | -1/+18 | |
| | | | | | | versions mismatch cf https://github.com/angristan/wireguard-install/issues/30 | |||||
* | Install packages non-interactively | angristan | 2020-02-15 | 1 | -12/+13 | |
| | ||||||
* | Rename variable | angristan | 2020-02-15 | 1 | -4/+3 | |
| | ||||||
* | Fix Shellcheck in GitHub action (#51) | Stanislas | 2020-02-11 | 1 | -1/+3 | |
| | ||||||
* | Show client conf as QR Code after install | angristan | 2020-02-11 | 1 | -5/+9 | |
| | | | | Fix #49 | |||||
* | Install software-properties-common on Ubuntu to add PPA | angristan | 2020-01-12 | 1 | -0/+1 | |
| | | | | Fix #48 | |||||
* | Update README.md | Stanislas | 2019-11-08 | 1 | -0/+6 | |
| | ||||||
* | Update action | Stanislas | 2019-10-30 | 1 | -1/+1 | |
| | ||||||
* | Update action | Stanislas | 2019-10-30 | 1 | -1/+1 | |
| | ||||||
* | Update action | Stanislas | 2019-10-30 | 1 | -1/+1 | |
| | ||||||
* | Merge pull request #41 from shyamjos/patch-1 | Stanislas | 2019-10-29 | 1 | -2/+2 | |
|\ | | | | | added missing package - resolvconf | |||||
| * | added missing package - resolvconf | Shyam Jos | 2019-10-19 | 1 | -2/+2 | |
|/ | | | | | | | | | | | | | | | | without resolvconf package, systemd unit file will fail in Debian 10 and ubuntu 18.04 or higher versions see error below ``` Oct 17 12:11:39 Asus-VivoBook wg-quick[25620]: [#] ip link add wg0 type wireguard Oct 17 12:11:39 Asus-VivoBook wg-quick[25620]: [#] wg setconf wg0 /dev/fd/63 Oct 17 12:11:39 Asus-VivoBook wg-quick[25620]: [#] ip -4 address add 10.9.0.3/24 dev wg0 Oct 17 12:11:39 Asus-VivoBook wg-quick[25620]: [#] ip link set mtu 1420 up dev wg0 Oct 17 12:11:39 Asus-VivoBook wg-quick[25620]: [#] resolvconf -a wg0 -m 0 -x Oct 17 12:11:39 Asus-VivoBook wg-quick[25620]: /usr/bin/wg-quick: line 31: resolvconf: command not found Oct 17 12:11:39 Asus-VivoBook wg-quick[25620]: [#] ip link delete dev wg0 Oct 17 12:11:39 Asus-VivoBook systemd[1]: wg-quick@wg0.service: Main process exited ``` more info here : https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=930735 | |||||
* | Arch Linux: install wireguard-arch kernel module | angristan | 2019-08-24 | 1 | -1/+1 | |
| | | | | Fix #33 | |||||
* | Merge pull request #31 from angristan/actions-yaml | Stanislas | 2019-08-16 | 2 | -9/+11 | |
|\ | | | | | convert main.workflow to Actions V2 yml file | |||||
| * | convert main.workflow to Actions V2 yml file | angristan | 2019-08-16 | 2 | -9/+11 | |
|/ | ||||||
* | Merge pull request #26 from outis151/patch-1 | Stanislas | 2019-08-08 | 1 | -2/+2 | |
|\ | | | | | Fix compatibility issues with UFW Firewall | |||||
| * | Fix compatibility issues with UFW Firewall | outis151 | 2019-07-20 | 1 | -2/+2 | |
| | | | | | | This fixed no tunnel connectivity issue for me using UFW | |||||
* | | Prevent word splitting | angristan | 2019-08-08 | 1 | -2/+2 | |
| | | | | | | | | Make CI happy (shellcheck - SC2046) | |||||
* | | Make sure iptables is installed | angristan | 2019-08-08 | 1 | -5/+5 | |
| | | | | | | | | Fix #28 | |||||
* | | README: Add link to WireGuard's website | angristan | 2019-08-08 | 1 | -1/+1 | |
| | | ||||||
* | | Make sure kernel headers are installed | angristan | 2019-08-08 | 1 | -1/+4 | |
| | | | | | | | | Fix #24. On Fedora/CentOS, kernel-headers is a dependency | |||||
* | | Update the README to specify what the script can currently do | angristan | 2019-08-07 | 1 | -0/+4 | |
|/ | ||||||
* | Create FUNDING.yml | Stanislas | 2019-07-01 | 1 | -0/+3 | |
| | ||||||
* | Merge pull request #19 from lucawen/master | Stanislas | 2019-06-09 | 1 | -0/+13 | |
|\ | | | | | | | | | Add support for pre-shared symmetric key Fix #12 | |||||
| * | Update names and default selection | Luca Lacerda | 2019-06-08 | 1 | -2/+3 | |
| | | ||||||
| * | Merge branch 'master' into master | Luca Lacerda | 2019-06-08 | 1 | -5/+6 | |
| |\ | |/ |/| | ||||||
* | | Merge pull request #22 from Leopere/ipversion-detect | Stanislas | 2019-06-06 | 1 | -5/+6 | |
|\ \ | | | | | | | Detect IPv6 usage | |||||
| * | | Detect rather than ask IP Version | Leopere | 2019-06-05 | 1 | -5/+6 | |
|/ / | ||||||
| * | Update confirmation | Luca Albuquerque | 2019-06-05 | 1 | -4/+6 | |
| | | ||||||
| * | Update names | Luca Albuquerque | 2019-06-04 | 1 | -2/+2 | |
| | |