From bbb4b1e4f318ac5b0509e52f9e9df2d4293f5a20 Mon Sep 17 00:00:00 2001 From: Giraffe1966 <35208168+Giraffe1966@users.noreply.github.com> Date: Fri, 29 Mar 2019 23:34:37 -0400 Subject: [PATCH 1/4] Update easy-rsa version. --- auto_install/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto_install/install.sh b/auto_install/install.sh index f743d05..c5a36b3 100755 --- a/auto_install/install.sh +++ b/auto_install/install.sh @@ -29,7 +29,7 @@ PIVPN_DEPS=(openvpn git tar wget grep iptables-persistent dnsutils expect whipta pivpnGitUrl="https://github.com/pivpn/pivpn.git" pivpnFilesDir="/etc/.pivpn" -easyrsaVer="3.0.4" +easyrsaVer="3.0.6" easyrsaRel="https://github.com/OpenVPN/easy-rsa/releases/download/v${easyrsaVer}/EasyRSA-${easyrsaVer}.tgz" # Raspbian's unattended-upgrades package downloads Debian's config, so this is the link for the proper config From 4f34bd33031b614419e081467a05dde34dd01afc Mon Sep 17 00:00:00 2001 From: Chuah Chee Shian Date: Fri, 5 Apr 2019 00:39:00 +0800 Subject: [PATCH 2/4] fixed rsyslog deprecated discard from ~ to stop --- auto_install/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto_install/install.sh b/auto_install/install.sh index f743d05..1822e66 100755 --- a/auto_install/install.sh +++ b/auto_install/install.sh @@ -1021,7 +1021,7 @@ confOVPN() { confLogging() { echo "if \$programname == 'ovpn-server' then /var/log/openvpn.log -if \$programname == 'ovpn-server' then ~" | $SUDO tee /etc/rsyslog.d/30-openvpn.conf > /dev/null +if \$programname == 'ovpn-server' then stop" | $SUDO tee /etc/rsyslog.d/30-openvpn.conf > /dev/null echo "/var/log/openvpn.log { From b75b36f4828c2d2e55804fd5497f19d035f4cfcb Mon Sep 17 00:00:00 2001 From: Jorge Frade Date: Wed, 10 Apr 2019 17:54:31 +0100 Subject: [PATCH 3/4] Fix Easy-RSA install Renamed from EasyRSA-{version}.tgz to EasyRSA-unix-v{version}.tgz --- auto_install/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto_install/install.sh b/auto_install/install.sh index 4db1009..25b8fe1 100755 --- a/auto_install/install.sh +++ b/auto_install/install.sh @@ -30,7 +30,7 @@ PIVPN_DEPS=(openvpn git tar wget grep iptables-persistent dnsutils expect whipta pivpnGitUrl="https://github.com/pivpn/pivpn.git" pivpnFilesDir="/etc/.pivpn" easyrsaVer="3.0.6" -easyrsaRel="https://github.com/OpenVPN/easy-rsa/releases/download/v${easyrsaVer}/EasyRSA-${easyrsaVer}.tgz" +easyrsaRel="https://github.com/OpenVPN/easy-rsa/releases/download/v${easyrsaVer}/EasyRSA-unix-v${easyrsaVer}.tgz" # Raspbian's unattended-upgrades package downloads Debian's config, so this is the link for the proper config UNATTUPG_CONFIG="https://github.com/mvo5/unattended-upgrades/archive/1.4.tar.gz" @@ -759,7 +759,7 @@ confOpenVPN() { fi # Get the PiVPN easy-rsa - wget -q -O - "${easyrsaRel}" | $SUDO tar xz -C /etc/openvpn && $SUDO mv /etc/openvpn/EasyRSA-${easyrsaVer} /etc/openvpn/easy-rsa + wget -q -O - "${easyrsaRel}" | $SUDO tar xz -C /etc/openvpn && $SUDO mv /etc/openvpn/EasyRSA-v${easyrsaVer} /etc/openvpn/easy-rsa # fix ownership $SUDO chown -R root:root /etc/openvpn/easy-rsa $SUDO mkdir /etc/openvpn/easy-rsa/pki From 5b404ccd9c7a2cacfe27a4eb6056af17c8a88e36 Mon Sep 17 00:00:00 2001 From: Michael Woolweaver Date: Tue, 23 Apr 2019 15:55:15 -0500 Subject: [PATCH 4/4] reorganize, borrowed some words re organized. also a little more strict to help with https://github.com/pivpn/pivpn/issues/723 also borrowed a few lines (3, 4, & 5) from https://github.com/pi-hole/pi-hole/blob/master/.github/ISSUE_TEMPLATE.md#L3 --- ISSUE_TEMPLATE.md | 50 ++++++++++++++++++++++++++++++----------------- 1 file changed, 32 insertions(+), 18 deletions(-) diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md index e3da04b..21d1b45 100644 --- a/ISSUE_TEMPLATE.md +++ b/ISSUE_TEMPLATE.md @@ -1,53 +1,67 @@ - - - - - - - + + +## In raising this issue, I confirm the following: + +`{please fill the checkboxes, e.g: [X]}` + +- [] I have read and understood the [contributors guide](https://github.com/pivpn/pivpn/blob/master/CONTRIBUTING.md). +- [] The issue I am reporting can be *replicated*. +- [] The issue I am reporting can be *is* directly related to the pivpn installer script. +- [] The issue I am reporting isn't a duplicate (see [FAQs](https://github.com/pivpn/pivpn/wiki/FAQ), [closed issues](https://github.com/pivpn/pivpn/issues?q=is%3Aissue+sort%3Aupdated-desc+is%3Aclosed), and [open issues](https://github.com/pivpn/pivpn/issues?q=is%3Aissue+sort%3Aupdated-desc+is%3Aopen)). + + + + -## Issue +### Issue -## Have you searched for similar issues and solutions? +### Have you searched for similar issues and solutions? (yes/no / which issues?) -## Console output of `curl -L install.pivpn.io | bash` +### Console output of `curl -L install.pivpn.io | bash` ``` Output Here ``` -## Console output of `pivpn add` or `pivpn add nopass` + +### Console output of `pivpn add` or `pivpn add nopass` ``` Output Here ``` -## Console output of `pivpn debug` +### Console output of `pivpn debug` ``` Output Here ``` -## Console Output of `sudo iptables -t nat -S` +### Console Output of `sudo iptables -t nat -S` ``` Output Here ``` -## Console Output of `sudo iptables -S` +### Console Output of `sudo iptables -S` ``` Output Here ``` -## output of `sudo netstat -uanp | grep openvpn` +### Console Output of `sudo netstat -uanp | grep openvpn` ``` Output Here ``` -## Have you taken any steps towards solving your issue? +### Have you taken any steps towards solving your issue? which? - -