Commit Graph

3641 Commits

Author SHA1 Message Date
Tianling Shen bb89205f5a yq: Update to 4.16.1
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
(cherry picked from commit 0f46facfdb)
2021-12-06 12:38:12 -08:00
Michal Hrusecky a9fed2403c
mariadb: Create compatibility symlinks
For every mysql* binary create corresponding mariadb binary and vice
versa.

Signed-off-by: Michal Hrusecky <michal.hrusecky@turris.com>
(cherry picked from commit 2295c351ed)
2021-12-03 14:29:28 +01:00
Michal Hrusecky 0e40e25fc7
mariadb: Install all supporting sql files
Do not pick just few random SQL files to install, install all of them.

Signed-off-by: Michal Hrusecky <michal.hrusecky@turris.com>
(cherry picked from commit 4653d83048)
2021-12-03 14:29:24 +01:00
Michal Hrusecky 753fe1d21d
mariadb: Tweak default configuration
Remove from default configuration options that are compiled in like
default paths and character set. On the other hand add few examples of
tweak options that might be handy.

Signed-off-by: Michal Hrusecky <michal.hrusecky@turris.com>
(cherry picked from commit a2c1a57282)
2021-12-03 14:29:19 +01:00
Michal Hrusecky ed572e3898
mariadb: Init script improvements
Update init script so other user/group can be used. Also make sure that
init script can actually create an empty database instead of forcing the
user to do it by hand. Other new feature is taking care of migration
of the database when upgrading the database.

Signed-off-by: Michal Hrusecky <michal.hrusecky@turris.com>
(cherry picked from commit 1be35284bb)
2021-12-03 14:29:07 +01:00
Michal Hrusecky fb4c9e5c48
mariadb-common: Drop package and adjust configuration
The raison d'être of package mariadb-common was to provide common my.cnf
config file that was being used to include subdirectories and then to
push utf-8 as default everywhere. Let's make this file part of the
server package as there we actually set other options as well and drop
it from all clients. Instead let's set utf-8 as default in server,
client and client libraries. While at it also set socket to the more
common path and drop mysqld_safe script from the list of configuration
files and do other minor tweaks.

Signed-off-by: Michal Hrusecky <michal.hrusecky@turris.com>
(cherry picked from commit d8ecded02d)
2021-12-03 14:29:02 +01:00
Tianling Shen 4877a3b72f yq: Update to 4.15.1
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
(cherry picked from commit 63f95db55e)
2021-11-27 17:18:11 +02:00
Gerard Ryan b320cc083b docker: Update to 20.10.11
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2021-11-22 16:41:10 -08:00
Gerard Ryan 307236dca7 dockerd: Update to 20.10.11
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2021-11-22 16:41:10 -08:00
Gerard Ryan b35eba3c97 containerd: Update to 1.4.12
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2021-11-22 16:41:10 -08:00
Paul Spooren c0ceaca007
auc: remove superfluous variables
Remove parsing of data which is not used within `auc`. Later iterations
may use these but they can be gradually added whenever needed.

Also remove HTTP code handling of error codes no longer used by the
backend. Early iterations of the server where infinitely complex to
figure out created images and announce them to clients but ever since
everything is stored in JSON, things got better (aka simpler).

If a package is missing on the upstream server, color it in red.

Signed-off-by: Paul Spooren <mail@aparcar.org>
(cherry picked from commit 6527d65b9b)
2021-11-15 21:18:38 +00:00
Paul Spooren 34e512ac2a
auc: use /json/v1/
Currently `auc` uses the outdated /json/ path, this commit uses
/json/v1/ to be more future proof.

Signed-off-by: Paul Spooren <mail@aparcar.org>
(cherry picked from commit 69b5c28929)
2021-11-15 21:18:31 +00:00
Daniel Golle a95f71a736
auc: fix some minor issues
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit 51f9df5b92)
2021-11-15 21:18:20 +00:00
Tianling Shen 966e3cc097 yq: Update to 4.14.2
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
(cherry picked from commit 8eab3a2bf2)
2021-11-15 13:10:38 -08:00
Oskari Rauta c55523b8c3
podman: update to 3.4.1
A lot of changes since 3.3.1.

Full (long) lists of release notes between
versions are available at
https://github.com/containers/podman/releases

containers.conf updated

Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
(cherry picked from commit 3e5761d6cd)
2021-11-15 20:05:13 +00:00
Huangbin Zhan 23415c4377
podman: fix broken conffiles
Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
(cherry picked from commit e6e770b268)
2021-11-15 20:05:08 +00:00
W. Michael Petullo 4ccf034829
podman: update to 3.3.1
Earlier versions of podman did not make use of TMPDIR when running "podman
run ...". Podman's default, /var/tmp, presents a problem to rootless
use since OpenWrt's /var/tmp does not permit writes by non-root users.
Podman 3.3.1 makes full use of TMPDIR.

This is part of an attempt to get rootless podman to work on OpenWrt.
See https://github.com/openwrt/packages/issues/15096.

See also the upstream issue at
https://github.com/containers/podman/issues/10698.

Signed-off-by: W. Michael Petullo <mike@flyn.org>
(cherry picked from commit 416eced174)
2021-11-15 20:05:03 +00:00
W. Michael Petullo 37df6c3ca0
podman: change permissions on /usr/share/containers/seccomp.json
Running podman as users other than root seems to require that those
users can read /usr/share/containers/seccomp.json. This change sets the
permissions on that file to match those used on Fedora.

Signed-off-by: W. Michael Petullo <mike@flyn.org>
(cherry picked from commit a41556af4f)
2021-11-15 20:04:58 +00:00
Oskari Rauta ea7b959fde
podman: update to 3.2.0
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
(cherry picked from commit e565bebf41)
2021-11-15 20:04:54 +00:00
W. Michael Petullo 16a3da37a8
podman: change permissions on /etc/containers
Running podman as users other than root seems to require that those
users can read the configuration files in /etc/containers. This change
sets the permissions of /etc/containers and its contents to match those
used on Fedora.

Signed-off-by: W. Michael Petullo <mike@flyn.org>
(cherry picked from commit f51ef46aa6)
2021-11-15 20:04:49 +00:00
Oskari Rauta a129759f04
podman: bumb version to 3.1.2
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
(cherry picked from commit b6299c763a)
2021-11-15 20:04:44 +00:00
Oskari Rauta 405bc67f82
podman: update to 3.1.1
- Add support for AppArmor
 - Gracefully stop containers and pods on shutdown

I found out that If you change location of containers to persistent storage instead of tmpfs, starting them will fail unless they have been stopped. If this is the case that reboot has occurred before pods and containers have been stopped, they cannot be started, they have to be removed and re-created. Change in initscript tries to avoid that. Even if containers are running at tmpfs, this won't hurt. Still, if something happens and system hangs/reboots/etc, script won't save you from that. It's just a attempt to make things better.
I also enabled AppArmor support for future possibilities.

Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
(cherry picked from commit 5bb8844fe3)
2021-11-15 20:04:40 +00:00
Oskari Rauta 961551a85c
podman: Add selinux variant and several improvements
* add -selinux variant which depends on libselinux
* init script for background service
* updated configurations
* maintainer change as requested

Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
(cherry picked from commit abce423851)
2021-11-15 20:04:35 +00:00
Daniel Golle cb1d97d52a
podman: add 'crun' to containers.conf
Now that 'crun' has been packaged, add support for it in podman.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit 954be76e6a)
2021-11-15 20:04:30 +00:00
Daniel Golle 90e58bdb97
podman: update to version 3.0.1
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit 3c758231cb)
2021-11-15 20:04:26 +00:00
Oskari Rauta 2b73497737
conmon: update to 2.0.30
bug fixes:
 - Remove unreachable code path
 - exit: report if the exit command was killed
 - exit: fix race zombie reaper
 - conn_sock: allow watchdog messages through the notify socket proxy
 - seccomp: add support for seccomp notify

misc:
 - Add seccomp to build dependency

included patch removes unnecessary dependency of libdl and also allows a succesfull build
disabled for arc where libseccomp does not seem to be available

Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
(cherry picked from commit ab08ad2ad9)
2021-11-15 20:04:21 +00:00
Oskari Rauta 6e74b5d7ba
conmon: update to 2.0.29
Patch fixing segfaults on nulls was removed due to patch's content being now included in conmon's source since containers/conmon@355dbf1

Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
(cherry picked from commit 9fdfe2e2c7)
2021-11-15 20:04:16 +00:00
Oskari Rauta 18cc7640b6
conmon: fix segfault, correct a typo and update description
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
(cherry picked from commit 463227f70c)
2021-11-15 20:04:11 +00:00
Daniel Golle 78a629de7a
conmon: update to version 2.0.27
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit 301abeecdc)
2021-11-15 20:04:06 +00:00
Rosen Penev e4d64cc279
conmon: update to 2.0.26
Switched to building with meson as it works better in a parallel
context.

Small Makefile adjustments for consistency.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit c8128df4e4)
2021-11-15 20:04:02 +00:00
Daniel Golle da757a11ed
cni-plugins: update to version 1.0.1
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit b42ea814a0)
2021-11-15 20:03:57 +00:00
Daniel Golle 95c6044151
cni-plugins: update to version 1.0.0
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit ab5050ed65)
2021-11-15 20:03:53 +00:00
Daniel Golle 89574510eb
cni-plugins: depend on kmod-veth
cni-plugins makes use of veth, make sure kernel module is installed.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit 1b25b6e239)
2021-11-15 20:03:48 +00:00
Daniel Golle 3a8dac1bc7
cni-plugins: update to version 0.9.1
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit d3da072411)
2021-11-15 20:03:44 +00:00
Daniel Golle 2a684bdfab
cni: update to version 1.0.1
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit 043bc28dd1)
2021-11-15 20:03:39 +00:00
Oskari Rauta e1489cd0f4
cni: update to 0.8.1
This is a security release that fixes a single bug:
 - tighten up plugin-finding logic (#811)

Users of libcni are strongly encouraged to update.

Added me to list of maintainers as requested by @dangowrt.

Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
(cherry picked from commit ceaccc1c7a)
2021-11-15 20:03:34 +00:00
Daniel Golle a7a0519590
i2c-tools: update to version 4.3
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit 4ed7701b78)
2021-11-15 20:01:23 +00:00
Daniel Golle 2fb6292391
gawk: update to version 5.1.1
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit be6099fb7e)
2021-11-15 20:01:04 +00:00
Daniel Golle dc8398b66b
ccid: update to version 1.4.36
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit f8e79854f9)
2021-11-15 20:00:59 +00:00
Rosen Penev 7ee645cba7
ccid: fix compilation under macOS
Remove a bad uname check.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 7a7d1a5d2c)
2021-11-15 20:00:54 +00:00
Daniel Golle 920608fdc9
ccid: update to version 1.4.35
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit a87236861f)
2021-11-15 20:00:49 +00:00
Daniel Golle c0d45ae37e
ccid: update to version 1.4.34
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit c22638cb83)
2021-11-15 20:00:45 +00:00
Daniel Golle 4c9cb7aa5d
cryptsetup: update to version 2.4.1
Package new experimental SSH token authenticator plugin as new package
'cryptsetup-ssh'.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit 97dd009f58)
2021-11-15 20:00:40 +00:00
Javier Marcet d6474f836b
cryptsetup: update to version 2.3.6
Signed-off-by: Javier Marcet <javier@marcet.info>
(cherry picked from commit 2bff0b47aa)
2021-11-15 20:00:33 +00:00
Daniel Golle c840b702b5
cryptsetup: update to version 2.3.5
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit c644917ca7)
2021-11-15 20:00:28 +00:00
Daniel Golle 010ac65551
opensc: update to version 0.22.0
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit a8f37fc15b)
2021-11-15 20:00:23 +00:00
Daniel Golle 45388a559d
opensc: update to version 0.21.0
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit c84ab8890c)
2021-11-15 20:00:18 +00:00
Daniel Golle 4f879fe495
pcsc-lite: update to version 1.9.4
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit 7e2a56e77d)
2021-11-15 20:00:13 +00:00
Daniel Golle 98bd765852
pcsc-lite: update to version 1.9.1
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit fee9ad1c68)
2021-11-15 20:00:07 +00:00
Daniel Golle 3b0f19d6d2
lvm2: update to version 2.03.14
Drop two local patches which were replaced by upstream commits.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit 74969337cf)
2021-11-15 19:59:57 +00:00