On 17/11/2025 14:59, Fabian Grünbichler wrote:
shouldn't we handle this and drop that environment variable entry
instead?

An empty environment variable is not the same as a missing one. The
entrypoint in the container might interpret it differently:

```
$ perl -e 'use Data::Dumper; print Dumper($ENV{A});'
$VAR1 = undef;
$ A= perl -e 'use Data::Dumper; print Dumper($ENV{A});'
$VAR1 = '';
```



_______________________________________________
pve-devel mailing list
[email protected]
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to