"Recv failure: connection reset by peer"
curl by default does not consider that a transient error, but will bail out fatally without retry, if it receives a RST from the server IP.
You did configure a static IP-address configuration on the server, and the server and the units you are provisioning are on an Ethernet switch that is not connected to anything else?
You may be able to work around the problem by editing /var/lib/cmprovision/resources/views/scriptexecute.blade.php
Replace this line: https://github.com/raspberrypi/cmprovis ... de.php#L62
Code:
curl --retry 10 -g "{{ $image_url }}" \
Code:
curl --retry 10 --retry-all-errors -g "{{ $image_url }}" \
Statistics: Posted by incognitum — Sun Jul 28, 2024 1:49 pm