MichaIng
MichaIng
https://github.com/pi-hole/pi-hole/blob/e5695f8/automated%20install/basic-install.sh#L2270-L2303 Since the `ldd` command and mock has not changed, it must be the `command -v sh` which does not return the expected path, hence is still not mocked correctly....
Here it's the other way round, Debian fails, all others succeed: https://github.com/a1346054/pi-hole/commit/c650e42 => https://github.com/MichaIng/pi-hole/actions/runs/3229542602/jobs/5286970802 So in those containers, `/bin => /usr/bin` is a symlink, so that with default `PATH` `/usr/bin/sh`...
Jep, it is like that, if I interpret the test helper correctly: https://github.com/pi-hole/pi-hole/blob/0df38cd/test/conftest.py#L55 The mock is done by creating a script with the same name in `/usr/local/bin`, which is used...
PR up to fix tests in this PR: https://github.com/a1346054/pi-hole/pull/1 Tests all green with this: https://github.com/MichaIng/pi-hole/actions/runs/3234059145 Using the glob `*/bin/sh` as single argument should be possible as well, but better to...
This usually needs to be done manually, e.g. via udev rules: ```sh echo -e 'SUBSYSTEM=="i2c-dev", GROUP="i2c", MODE="0660"\nSUBSYSTEM=="spidev", GROUP="spi", MODE="0660"' > /etc/udev/rules.d/99-i2c_spi_group.rules ``` It uses `spi` group for SPI and `i2c`...
> so if that means needs to be implemented in Armbian to be able to be in the dietpi image then I would think that is best approach. We can...
Can you please paste the whole `dmesg -l err,crit,alert,emerg` output or even `dmesg`? The log you pasted seems to have been caused by `fstrim`, which runs once a week to...
Many thanks for testing. So it works on the DietPi ARMv6 Stretch image, on the Armbian ARMv8 image but not on the DietPi ARMv7 image. Does it work on the...
Ah right, I mixed up Stretch and Buster. So yeah, quite something will have changed between those kernel and also fstrim/distro versions, just sad that it changed from functional to...
@symbios24 Many thanks for your input. At least currently when installing Hotspot, DietPi expects an Ethernet connection for internet access while the WiFi is reserved for the Hotspot. AFAIK there...