Package Details: openvpn-update-resolv-conf-git r46.2485e9d-1

Git Clone URL: https://aur.archlinux.org/openvpn-update-resolv-conf-git.git (read-only, click to copy)
Package Base: openvpn-update-resolv-conf-git
Description: OpenVPN Update resolvconf
Upstream URL: https://github.com/alfredopalhares/openvpn-update-resolv-conf
Licenses: GPL
Conflicts: openvpn-update-resolv-conf
Provides: openvpn-update-resolv-conf
Submitter: mtreinish
Maintainer: buzo
Last Packager: buzo
Votes: 54
Popularity: 0.041712
First Submitted: 2016-04-15 23:43 (UTC)
Last Updated: 2022-05-17 19:17 (UTC)

Pinned Comments

warmwaffles commented on 2017-11-15 15:07 (UTC)

I highly recommend you guys look at the README in the github repo which states: > However if you have systemd 229 or newer the better option is to use script from https://github.com/jonathanio/update-systemd-resolved which uses DBus calls instead of creating temporary *.network files. Which can be found here https://aur.archlinux.org/packages/openvpn-update-systemd-resolved/ Systemd is at 233 right now for me, so it is a much better option to use it instead.

Latest Comments

1 2 3 Next › Last »

just1602 commented on 2022-05-20 14:36 (UTC) (edited on 2022-05-20 14:52 (UTC) by just1602)

buzo : the point is that since you use git:// protocol I get the following error when I run paru : error: timed out looking for devel update: git://github.com/masterkorp/openvpn-update-resolv-conf

When I try to clone manually the repo using the following url https://github.com/alfredopalhares/openvpn-update-resolv-conf it works instantly.

EDIT: it works when I manually run makepkg, I'll try to see where it bugs with paru. Sorry for the useless works. :(

buzo commented on 2022-05-17 19:23 (UTC)

just1602: I don't see the point, since the URL already contains https://. I've just appended .git to the source URL, but there is no big difference. See here and here for details.

just1602 commented on 2022-05-17 18:47 (UTC)

Hello !

Github does not support the git:// protocol anymore since it is not encrypted. You need to use the https:// protocol instead.

So in the PKGBUILD, the source url must be change from git+$url to $url.

buzo commented on 2022-03-19 20:28 (UTC)

Fixed – sorry for the delay.

svalo commented on 2022-01-11 08:25 (UTC) (edited on 2022-01-11 08:25 (UTC) by svalo)

It seems that the upstream url changed to https://github.com/alfredopalhares/openvpn-update-resolv-conf, would you consider applying the following patch?

diff --git a/PKGBUILD b/PKGBUILD
index 07580c4..aba56b0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,8 +3,8 @@

 _pkgname=openvpn-update-resolv-conf
 pkgname="$_pkgname"-git
-pkgver=r42.43093c2
-pkgrel=2
+pkgver=r44.0288491
+pkgrel=1
 pkgdesc="OpenVPN Update resolvconf"
 arch=('any')
 url="https://github.com/masterkorp/$_pkgname"
@@ -13,7 +13,7 @@ provides=("$_pkgname")
 conflicts=("$_pkgname")
 makedepends=('git')
 depends=('openvpn' 'openresolv')
-source=("git://github.com/masterkorp/$_pkgname")
+source=("git+https://github.com/alfredopalhares//$_pkgname.git")
 sha256sums=('SKIP')

 pkgver() {

buzo commented on 2018-09-17 15:19 (UTC)

Thanks, sebstar – fixed.

sebstar commented on 2018-09-17 14:46 (UTC)

shouldn't the mode of the script file be 755? it currently is installed with 655, which is inconsistent. either 755 or 644 (makes less sense, since this is an executable script). thanks!

ekkelett commented on 2017-11-17 10:30 (UTC)

@archerie what'd you have in mind? @warmwaffles that does require that you use systemd-resolved -- I haven't looked into how well it works with a netctl-based or dhcpcd-based workflow however.

warmwaffles commented on 2017-11-15 15:07 (UTC)

I highly recommend you guys look at the README in the github repo which states: > However if you have systemd 229 or newer the better option is to use script from https://github.com/jonathanio/update-systemd-resolved which uses DBus calls instead of creating temporary *.network files. Which can be found here https://aur.archlinux.org/packages/openvpn-update-systemd-resolved/ Systemd is at 233 right now for me, so it is a much better option to use it instead.