- Jun 24, 2020
-
-
Josef Schlehofer authored
In the version bump sentinel-proxy there was removed uci file which should be in /etc/config. This seems like somebody forget to remove it from the Makefile. It failed with this error: install: cannot stat 'files/uci': No such file or directory Fixes: d5ac0320 ("sentinel-proxy: Release v1.3 (device token)")
-
- Jun 23, 2020
-
-
- Jun 22, 2020
-
-
Josef Schlehofer authored
-
Karel Koci authored
-
I just upgraded from 3.11.17 to 5.0.2 and my LXC containers didn't migrate correctly -- almost correctly, but the IP address keys were rewritten to suit the new version. ```sh root@turris:/srv/lxc# lxc-ls -l DEBUG lxc-ls: parse.c: lxc_file_for_each_line_mmap: 142 Failed to parse config file "/srv/lxc/con/config" at line "lxc.net.0.ipv4.ipv4 = 192.168.1.2" Failed to load config for con ``` which caused the container to fail to load until it was fixed. The issue was caused by the following invalid config being present after migration: ``` lxc.net.0.ipv4.ipv4 = xxxxxx lxc.net.0.ipv6.ipv6 = xxxxxx ``` The config in LXC v3 should look like the following, being a change of key from `ipv4` and `ipv6` to `address`: ``` lxc.net.0.ipv4.address = xxxxxx lxc.net.0.ipv6.address = xxxxxx ``` This fixes #618, tos3to4: fix LXC migration where IP addresses are specified.
-
Karel Koci authored
-
No branch override in configuration means deploy branch. That is empty string. Problem was that as default value was used 1. The effect was that such router was migrated to HBK instead of HBS as it would be expected.
-
Karel Koci authored
-
This directory of course might not exist. We should create upper directory so we can move localrepo in there.
-
Michal Hrusecky authored
Add new subpackage containing pam authentification module. Shouldn't affect dependencies and nothing changes, there is just one more module enabled for people interested in it.
-
Karel Koci authored
-
- Jun 21, 2020
-
-
David Beitey authored
The original script errored, trying to execute the command `luci-app-squid` because of the use of backticks in the string in the shell script being interpreted as evaluation. The error looked like so: ``` INFO:Running postrm of tos3to4 /usr/lib/opkg/info//tos3to4.postrm: line 1: luci-app-squid: not found /usr/lib/opkg/info//tos3to4.postrm: line 20: syntax error: unexpected "}" INFO:Running postrm of cznic-repo-keys-test INFO:Cleaning up control files ERROR:Failed operations: tos3to4/postrm: /usr/lib/opkg/info//tos3to4.postrm: line 1: luci-app-squid: not found /usr/lib/opkg/info//tos3to4.postrm: line 20: syntax error: unexpected "}" ``` This fix simply removes the backticks and simplifies the shell output. This fixes #617, tos3to4: fix postrm script error - trying to execute luci-app-squid.
-
- Jun 19, 2020
-
-
Josef Schlehofer authored
In OpenWrt master (and in upcoming 20.xx), there was added library libcap-ng. When libcap-ng is built before knot-resolver, it is detected by the build system and knot-resolver requires to add libcap-ng to depends. However, libcap-ng can restrict privileges also while Knot Resolver is running under root. Because of that, disable libcap-ng
-
- Jun 18, 2020
-
-
Josef Schlehofer authored
-
Josef Schlehofer authored
It failed with following error: gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now
-
Josef Schlehofer authored
-
Josef Schlehofer authored
We were able to investigate the issue, which we had. It seems there is a bug inside OpenSSL library for powerpc in ASM implementation. So, we can now provide DNS servers with enabled DNS-over-TLS This reverts commit 38dbe8e0.
-
- Jun 16, 2020
-
-
Josef Schlehofer authored
-
Josef Schlehofer authored
-
Josef Schlehofer authored
-
Josef Schlehofer authored
I am not sure about the reason, why we have our own package for argp-standalone. It looks exactly same as the package, which is already in OpenWrt main feed. Let's use the upstream package instead of ours
-
Josef Schlehofer authored
Submenu contains just one package and there was suricata-conntrack-flows. It does not have make any sense to create submenu in make menuconfigure for one package at all!
-
Josef Schlehofer authored
-
Josef Schlehofer authored
It was not compiled, it is broken and outdated.
-
Josef Schlehofer authored
-
Josef Schlehofer authored
We are overwriting defaults. It is wrong as we didn't count with variable ($PKG_VERSION). This means that if we didn't clean up build_dir or dl folder, it will be extraced to smth without versioning. - remove PKG_SOURCE_SUBDIR:=$(PKG_NAME) as well - Add PKG_RELEASE if it was possible
-
Josef Schlehofer authored
-
Josef Schlehofer authored
This will save a lot of space on our buildbots
-
Josef Schlehofer authored
-
Martin Prudek authored
-
- Jun 12, 2020
-
-
Josef Schlehofer authored
-
Josef Schlehofer authored
tos3to4: send notification about completed migration See merge request turris/turris-os-packages!380
-
Karel Koci authored
tos3to4 is removed in last step of migration. That is ideal place to send notification that migration was successful. This is to just inform user that everything went all right. That message also contain some generic list of changes. It is at the moment more about what we removed but let's hope that first point is the most important one.
-
- Jun 11, 2020
-
-
Karel Koci authored
This should help users to better orient in their snapshots.
-
- Jun 10, 2020
-
-
Karel Koci authored
This changes source of OUI. Now this uses extended list from Wireshard. It also removes usage of external repository. It was questionable if we need repository for something like this. This instead lets OpenWrt build system pull whole list as plain text, converts it with simple awk to CSV. The only untouched part is query script.
-
Karel Koci authored
-