| Commit message (Collapse) | Author | Age |
|\
| |
| | |
wifidog-ng: remove incorrect PKG_BUILD_DIR override
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
As wifidog-ng builds a kernel module, it must use a PKG_BUILD_DIR in
KERNEL_BUILD_DIR instead of BUILD_DIR, otherwise old build artifacts may
be incorrectly reused when switching between different targets of same
architecture without a full clean.
Instead of fixing up the override, just remove it and instead move the
kernel.mk include above package.mk, so PKG_BUILD_DIR is set up correctly
by default.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
|
|\ \
| | |
| | | |
nextdns: Update to version 1.5.7
|
| | |
| | |
| | |
| | | |
Signed-off-by: Algin Maduro <1469047+mad-it@users.noreply.github.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
|
|/ /
| |
| |
| |
| |
| |
| | |
Review of my PR to add readsb requested to use codeload. Update vallumd
to use codeload as well, so that things are consistent.
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
|
|\ \
| | |
| | | |
fping: add new config option to install SUID root
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
fping requires either root or CAP_NET_PING to work, otherwise it is
useless. Use INSTALL_SUID so that fping will be setuid root, and thus
it will be usable by non-root users.
fping knows to drop root priviledges after it parses the command line
and creates the ping socket. You actually get a lot less code running
as root when you make it setuid root and run it from an unprivileged
user.
This is the same way net/iputils already handles "ping", which has the
same requirements.
Signed-off-by: Henrique de Moraes Holschuh <henrique@nic.br>
|
|\ \ \
| | | |
| | | | |
davfs2: fix compilation with newer neon
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|\ \ \ \
| |/ / /
|/| | | |
sysrepo: update to 1.4.2
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
|
|\ \ \ \
| | | | |
| | | | | |
openssh-server: deprecate the ecdsa HostKey
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The init.d script for sshd never generates an ecdsa HostKey as seen
here:
for type in rsa ed25519
do
# check for keys
key=/etc/ssh/ssh_host_${type}_key
[ ! -f $key ] && {
# generate missing keys
[ -x /usr/bin/ssh-keygen ] && {
/usr/bin/ssh-keygen -N '' -t $type -f $key 2>&- >&-
}
}
done
so we'll never succeed at loading one. Get rid of the resultant
error message in logging:
May 5 17:13:59 OpenWrt sshd[20070]: error: Unable to load host key: /etc/ssh/ssh_host_ecdsa_key
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Linux kernel and iproute2 together now implement strict checking of the
existence of route tables.
Previously kernel does not support filtering by table id, now it does
and will error with nlmsgerr "ipv4: FIB table does not exist".
Previously iproute2 dump all routes and filter by table id in userspace,
now this has changed with iproute2 commit c7e6371bc4af ("ip route: Add
protocol, table id and device to dump request")
Error scene
root@OpenWrt:/# ip route flush table 100
Error: ipv4: FIB table does not exist.
Flush terminated
root@OpenWrt:/# echo $?
2
Fixes: https://github.com/openwrt/packages/issues/12095
Ref: https://lists.openwall.net/netdev/2019/05/02/105
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
|
|\ \ \ \
| | | | |
| | | | | |
wsdd2: fix infinite loop when BI_PARM is never set
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Syrone Wong <wong.syrone@gmail.com>
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
If BI_PARM is never set, it's "" and causes
infinite loop (before my PR sent upstream) or
error out (after my PR sent upstream).
Append -b option only if it's valid.
Signed-off-by: Syrone Wong <wong.syrone@gmail.com>
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When libevhtp is added to a package's PKG_BUILD_DEPENDS (i.e. for
seafile-server), libevhtp's target package dependencies are not
automatically selected, in particular libevent2-openssl and
libevent2-pthreads.
Moreover, if libevent-openssl and libevent2-pthreads are not selected,
OpenSSL and thread support are disabled when compiling libevent2, which
in turn causes a compile error when building libevhtp.
This adds a config option, LIBEVHTP_BUILD_DEPENDS, that will select
libevent2-openssl and libevent2-pthreads (via LIBEVHTP_BUILD_SELECT)
when it is selected.
Other build dependencies are moved to PKG_BUILD_DEPENDS.
This also updates seafile-server to remove the (indirect) dependencies
added in 13d843fec1cd3281cc469fc74de302c1f793b723 and instead select
LIBEVHTP_BUILD_DEPENDS.
This also updates the maintainer's email address and adds myself as
another maintainer.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
|\ \ \
| | | |
| | | | |
vpn-policy-routing: support phys-dev policies
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Stan Grishin <stangri@melmac.net>
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
To use eap tls, 'tmpdir' must be created before server starts.
This 'tmpdir' is used to store and verify client certificate,
and therefore radiusd do 'chmod go-rwx'.
If 'tmpdir' does NOT exists, server failed to start and default
'tmpdir' is '/tmp/radiusd'. So init script MUST create default
'tmpdir' like other directories.
Signed-off-by: Eiji MATSUMOTO <toudaiman@gmail.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
|
| | |
| | |
| | |
| | |
| | |
| | | |
The Luci app for ACME has been moved to the luci package feed.
Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Openwrt is a single user system. So keepalived is runnig as root.
If we add the config options `script_user root` and
`enabled_script_security' the following warnings are gone.
> local1.info Keepalived_vrrp[5382]: SECURITY VIOLATION - scripts are
being executed but script_security not enabled.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
|
|\ \ \
| | | |
| | | | |
frr: makefile cleanup and misc fixes
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
fix mips runtime by backporting some yang changes from master
added commited fixes to 7.3
also add option for snmp support
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
|
|\ \ \ \
| | | | |
| | | | | |
vpn-policy-routing: bugfix: remove non-ASCII from log; update README
|
| | |_|/
| |/| |
| | | |
| | | | |
Signed-off-by: Stan Grishin <stangri@melmac.net>
|
|\ \ \ \
| | | | |
| | | | | |
vpnbypass: bugfix: remove non-ASCII from system log; update README
|
| |/ / /
| | | |
| | | |
| | | | |
Signed-off-by: Stan Grishin <stangri@melmac.net>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
|
|/ / /
| | |
| | |
| | | |
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Jeroen Peelaerts <jeroen.peelaerts@gmail.com>
|
| |/
|/|
| |
| | |
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
|
| |
| |
| |
| | |
Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
|
|/
|
|
| |
Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
|
|\
| |
| | |
openconnect: Allow to set `usergroup` option
|
| |
| |
| |
| |
| |
| | |
Just adding the extra option `-g|--usergroup <group>` (required by the VPN server I'm currently using)
Signed-off-by: Marco Gulino <marco@gulinux.net>
|
| |
| |
| |
| |
| |
| |
| |
| | |
Fix compilation error with x86_64 glibc
Fix changed download location on snort.org
Signed-off-by: Ian Cooper <iancooper@hotmail.com>
|
|\ \
| | |
| | | |
netifyd: Updated to v3.00
|
| | |
| | |
| | |
| | | |
Signed-off-by: Darryl Sokoloski <darryl@sokoloski.ca>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Add possibility for user to provide setup and cleanup scripts for
additional flexibility. Setup-script takes precedence over the built-in
behavior of uacme.
This helps users with more complex use-cases to utilize uacme to update
certificates without adding complexity to the provided run.sh script.
Signed-off-by: Antti Seppälä <a.seppala@gmail.com>
|