Commit graph

23153 commits

Author SHA1 Message Date
Erik Larsson
b6a85b9272 python-uci: add package
Python bindings for libuci, useful for writing ansible modules to manage OpenWRT systems.
Reused Makefile from upstream: https://gitlab.nic.cz/turris/turris-os-packages/-/blob/develop/lang/python-uci/Makefile

Signed-off-by: Erik Larsson <who+github@cnackers.org>
2021-01-31 18:58:00 +01:00
W. Michael Petullo
0f0f8f34dd snort3: update to 3.1.0.0
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-01-31 13:39:35 +02:00
W. Michael Petullo
3878785320 libdaq3: update to 3.0.0
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-01-31 13:39:35 +02:00
W. Michael Petullo
ba4839f3c7 quota: update to 4.06
This includes a backport of quota commit 02b222a3, which removes the
use of reallocarray. The musl C library does not provide reallocarray.

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-01-31 13:35:42 +02:00
Rosen Penev
9133e79ccb
Merge pull request #14593 from neheb/udp
udpspeeded: add missing libatomic dependency
2021-01-29 16:23:26 -08:00
Rosen Penev
d8c810861c
udpspeeder: add missing libatomic dependency
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-29 15:53:54 -08:00
Jianhui Zhao
7455549ed9 rtty: update to 7.3.0
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-01-29 07:56:53 -10:00
Noah Meyerhans
437e131fe0 bind: bump to 9.17.9
Drop obsolete patches

 - 001-no-tests.patch
 - 002-fix-cross-compilation.patch

Move several user-executable binaries from /usr/sbin to /usr/bin per
upstream.

Signed-off-by: Noah Meyerhans <frodo@morgul.net>
2021-01-29 09:10:31 -08:00
Philip Prindeville
40c83eed58
Merge pull request #14601 from pprindeville/isc-dhcp-add-multihoming-domain
isc-dhcp: add multihoming domain
2021-01-28 22:32:43 -07:00
Philip Prindeville
a138ceec86 isc-dhcp: add support for multi-homing in 'domain' configs
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2021-01-28 18:12:11 -07:00
Rosen Penev
825b2c7e4f
Merge pull request #14545 from PolynomialDivision/generate-ipv6-adddress-autorelease
generate-ipv6-address: use autorelease feature
2021-01-28 13:40:03 -08:00
Rosen Penev
6f7ba99c3f
Merge pull request #14544 from PolynomialDivision/libradiotap-use-autorelease
libradiotap: use autorelease feature
2021-01-28 13:39:52 -08:00
Rosen Penev
9921d53a49
Merge pull request #14543 from PolynomialDivision/libuwifi-use-autorelease
libuwifi: use autorelease feature
2021-01-28 13:39:36 -08:00
Rosen Penev
9a56e4e0ec
Merge pull request #14542 from PolynomialDivision/sipcalc-use-autorelease
sipcalc: use autorelease feature
2021-01-28 13:39:23 -08:00
Rosen Penev
2ef5960a61
Merge pull request #14595 from jmarcet/docker-compose-update
docker-compose: Update to version 1.28.2
2021-01-28 13:38:56 -08:00
Rosen Penev
e958a3424b apk: fix compilation without deprecated OpenSSL APIs
Upstream Backport.

Refreshed patches.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-28 09:01:21 -10:00
Hannu Nyman
1d07e993bb
Merge pull request #14568 from PolynomialDivision/collectd-fix-snmp6
collectd: refactor snmp6
2021-01-28 19:01:03 +02:00
Florian Eckert
e00afb6dc9
Merge pull request #14588 from TDT-AG/pr/20210127-keepalived
keepalived: update to version 2.1.1
2021-01-28 08:04:19 +01:00
Ilya Lipnitskiy
72563ff93b gl-mifi-mcu: compatibility with linux >= 5.6
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
2021-01-28 07:53:11 +01:00
Javier Marcet
8b9b36035c docker-compose: Update to version 1.28.2
Bugs:

- Revert to Python 3.7 bump for Linux static builds

- Add bash completion for docker-compose logs|up --no-log-prefix

Miscellaneous:

- CI setup update

Signed-off-by: Javier Marcet <javier@marcet.info>
2021-01-28 03:30:13 +01:00
Rosen Penev
ebba975286
Merge pull request #14592 from dobo90/socat_improvement
socat: allow more complex command line options
2021-01-27 13:32:46 -08:00
Dobroslaw Kijowski
218b7521aa socat: allow more complex command line options
Current implementation of socat's init service doesn't allow to run more
complex configurations. As an example there's no possibility to execute
following command:

  socat TCP-LISTEN:8080,fork,reuseaddr,bind=192.168.1.1 \
    EXEC:"/sbin/ip netns exec somenetns socat STDIO TCP:10.0.0.1:80"

In such command the first line is argv[1] and the second line is
argv[2]. SocatOptions config option is a string. As as a consequence of
this each word will be passed as a separate argv element. Socat won't be
able to parse arguments correctly.

In order to mitigate this issue, we can also accept SocatOptions as a
list of strings. Following config file will work correctly:

config socat 'tunnel_8080_into_somenetns'
	option enable '1'
	list SocatOptions 'TCP-LISTEN:8080,fork,reuseaddr,bind=192.168.1.1'
	list SocatOptions 'EXEC:"/sbin/ip netns exec somenetns socat STDIO TCP:10.0.0.1:80"'

While we're at it, pass stdout and stderr into logread.

Signed-off-by: Dobroslaw Kijowski <dobo90@gmail.com>
2021-01-27 21:24:38 +01:00
Jan Pavlinec
7adb6d2599 python-pytest: update to version 6.2.2
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2021-01-27 17:52:14 +02:00
Jan Pavlinec
b38bf0bd97 python-pytest-xdist: update to version 2.2.0
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2021-01-27 17:51:41 +02:00
Jianhui Zhao
da7858204b rtty: update to 7.2.3
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-01-27 17:51:27 +02:00
Jan Pavlinec
edf63727c3 python-psutil: update to version 5.8.0
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2021-01-27 17:51:12 +02:00
Florian Eckert
b7503f6498
Merge pull request #14584 from EdiTurn/master
ddns-scripts: make WGET_SSL executable
2021-01-27 15:56:21 +01:00
Florian Eckert
17346bfefa keepalived: use autorelease feature
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2021-01-27 15:37:48 +01:00
Florian Eckert
4a37ef0d7d keepalived: update to version 2.2.1
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2021-01-27 15:37:44 +01:00
Edi Turn
0e4f2b1068 ddns-scripts: make WGET_SSL executable
Signed-off-by: Edi Turn <yyxstter@gmail.com>
2021-01-27 20:40:03 +08:00
Josef Schlehofer
c0135a326c sudo: update to version 1.9.5p2
Fixes: CVE-2021-3156 (known as Baron Samedit)

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2021-01-27 01:37:10 -10:00
Rosen Penev
ad45a55240
Merge pull request #14541 from PolynomialDivision/use-autorelease
dawn: use autorelease feature
2021-01-27 03:34:48 -08:00
Nick Hainke
2220432300 dawn: use autorelease feature
Package version is automatically increased as described here:
https://github.com/openwrt/packages/issues/14537

Signed-off-by: Nick Hainke <vincent@systemli.org>
2021-01-27 12:21:27 +01:00
Paul Spooren
477081779f apk: add package
The Alpine Package Keeper is the default package manager for Alpine
Linux. They manage their own repositoriy with thousends of packages and
as musl is used for compilation, their binaries can directly run on
OpenWrt.

Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-01-26 19:46:02 -10:00
Rosen Penev
341e72d203
Merge pull request #14515 from sartura/sysrepo
netopeer2: merge-config: listen on ipv6 and ipv4
2021-01-26 17:05:38 -08:00
Jakov Smolic
ede1755192
netopeer2: merge-config: listen on ipv6 and ipv4
* The default local-adress makes Netopeer2-server listen on ipv4 only.
We change it to :: in order to listen on ipv6 as well as ipv4.

Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
2021-01-26 23:56:11 +01:00
Rosen Penev
d20012580f
Merge pull request #14494 from neheb/n
nfs-kernel-server: update to 2.5.2
2021-01-26 14:55:11 -08:00
Rosen Penev
79c7dd5401
Merge pull request #14520 from neheb/ato
atop: update to 2.6.0
2021-01-26 14:54:51 -08:00
Rosen Penev
ad0469afc1
Merge pull request #14578 from lucize/frrup
frr: update 7.5 to latest backports
2021-01-26 14:54:13 -08:00
Rosen Penev
d2e8582b6e
Merge pull request #14576 from Andy2244/ksmbd-fix-#13758
ksmbd-tools: fix #13758
2021-01-26 14:54:03 -08:00
Rosen Penev
f673260cfa
Merge pull request #14574 from Andy2244/samba-4.13.4
samba4: update to 4.13.4
2021-01-26 14:53:42 -08:00
Lucian Cristian
fabe4c030a frr: update 7.5 to latest backports
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2021-01-26 21:02:28 +02:00
Nick Hainke
213c694b75 collectd: snmp6 further improvements
Return with "-1" if parsing fails in read function.
Reduce buffersize of splitstring function.

Signed-off-by: Nick Hainke <vincent@systemli.org>
2021-01-26 14:47:28 +01:00
Andy Walsh
4c373ec720 ksmbd-tools: fix #13758
* fix for possible exploit #13758
* sanetize all external template/config inputs
* fix some shellcheck warnings

Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
2021-01-26 12:40:08 +01:00
Andy Walsh
35b3a4444e samba4: update to 4.13.4
* update to 4.13.4

Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
2021-01-26 12:15:24 +01:00
Florian Eckert
d048c4b348
Merge pull request #14551 from geraldhansen/fix-ddns-provider
Fix ddns provider
2021-01-26 12:07:26 +01:00
Gerald Hansen
219b0af28f ddns-scripts: Increase PKG_RELEASE
Signed-off-by: Gerald Hansen <gerald.hansen@posteo.de>
2021-01-26 11:24:08 +01:00
Gerald Hansen
937560417c ddns-scripts: Remove not working ddns provider
I checked the hostname for existing DNS A and AAAA entries and these
ones didn't have an entry.

Signed-off-by: Gerald Hansen <gerald.hansen@cloud.ionos.com>
2021-01-26 11:24:08 +01:00
Gerald Hansen
9787de80e5 ddns-scripts: Change parameter for myonlineportal
As the default uclient-fetch doesn't support authentication header
and the ddns provider myonlineportal.net support also username and
passwort as url parameter this can be changed.

Signed-off-by: Gerald Hansen <gerald.hansen@cloud.ionos.com>
2021-01-26 11:24:08 +01:00
Rosen Penev
a65552650a
Merge pull request #14571 from neheb/j
pthsem: try to fix ARC compilation
2021-01-25 23:27:42 -08:00