Skip to content
This repository was archived by the owner on Jun 15, 2021. It is now read-only.

Commit 53cc89c

Browse files
authored
Merge pull request #148 from linuxserver/fixes
fixes for 2.9.0
2 parents 526309d + 458746b commit 53cc89c

File tree

4 files changed

+42
-10
lines changed

4 files changed

+42
-10
lines changed

Dockerfile

+39-9
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,51 @@ RUN \
1515
apt-get update && \
1616
apt-get install -y \
1717
bridge-utils \
18+
file \
1819
gnupg \
1920
iproute2 \
2021
iptables \
22+
libatm1 \
23+
libelf1 \
24+
libexpat1 \
25+
libip4tc0 \
26+
libip6tc0 \
27+
libiptc0 \
2128
liblzo2-2 \
22-
libmariadbclient18 \
23-
libmysqlclient-dev \
29+
libmagic-mgc \
30+
libmagic1 \
31+
libmariadb3 \
32+
libmnl0 \
33+
libmpdec2 \
34+
libmysqlclient20 \
35+
libnetfilter-conntrack3 \
36+
libnfnetlink0 \
37+
libpcap0.8 \
38+
libpython3-stdlib \
39+
libpython3.6-minimal \
40+
libpython3.6-stdlib \
41+
libxtables12 \
42+
mime-support \
43+
multiarch-support \
44+
mysql-common \
2445
net-tools \
25-
python \
26-
python-mysqldb \
27-
python-pkg-resources \
28-
python-pyrad \
29-
python-serial \
30-
rsync \
46+
python3 \
47+
python3-decorator \
48+
python3-ldap3 \
49+
python3-migrate \
50+
python3-minimal \
51+
python3-mysqldb \
52+
python3-pbr \
53+
python3-pkg-resources \
54+
python3-pyasn1 \
55+
python3-six \
56+
python3-sqlalchemy \
57+
python3-sqlparse \
58+
python3-tempita \
59+
python3.6 \
60+
python3.6-minimal \
3161
sqlite3 \
32-
ucarp && \
62+
xz-utils && \
3363
echo "**** add openvpn-as repo ****" && \
3464
curl -s https://as-repository.openvpn.net/as-repo-public.gpg | apt-key add - && \
3565
echo "deb http://as-repository.openvpn.net/as/debian bionic main">/etc/apt/sources.list.d/openvpn-as-repo.list && \

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
252252

253253
## Versions
254254

255+
* **15.06.20:** - Add fixes for 2.9.0.
255256
* **04.11.20:** - `xenial` tag is deprecated and there will be no further releases for that tag.
256257
* **22.06.20:** - Added Support for persistent Customization Folders.
257258
* **26.03.20:** - Switch to using the openvpn-as repo for packages.

readme-vars.yml

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ app_setup_block: |
6666
6767
# changelog
6868
changelogs:
69+
- { date: "15.06.20:", desc: "Add fixes for 2.9.0." }
6970
- { date: "04.11.20:", desc: "`xenial` tag is deprecated and there will be no further releases for that tag." }
7071
- { date: "22.06.20:", desc: "Added Support for persistent Customization Folders." }
7172
- { date: "26.03.20:", desc: "Switch to using the openvpn-as repo for packages." }

root/etc/cont-init.d/40-openvpn-init

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/with-contenv bash
22

33
NOASCONFIG='DELETE\n'
4-
ASCONFIG='yes\nyes\n1\n943\n9443\nyes\nyes\nyes\nyes\nno\nadmin\n\n'
4+
ASCONFIG='yes\nyes\n1\nrsa\n2048\nrsa\n2048\n943\n9443\nyes\nyes\nyes\nyes\nno\nadmin\n\n'
55

66
if [ ! -f "/config/etc/as.conf" ]; then
77
CONFINPUT=$ASCONFIG

0 commit comments

Comments
 (0)