DNR filter

I just SSH’d into the Vero and then did this:

sudo crontab -e

then added:

@reboot bash /opt/scripts/startup-user.sh

the script contains:

#!/bin/bash
PATH=/opt/sbin:/usr/sbin:/sbin:/opt/bin:/usr/bin:/bin

echo 1 | sudo tee /sys/module/di/parameters/bypass_all
1 Like

That should do it, but I don’t think you need the PATH and since rc.local is run as root a simple

echo 1 > /sys/module/di/parameters/bypass_all would do it as well.

But with the next update bypass_all = 1 will be the default.

1 Like

This is what I did for now, nice that the next update will solve it, now I at least am sure it will not happen again after a reboot.

It’s included in staging now and will be part of the next update (planned for Sunday)

1 Like