Open N0rbert opened 2 years ago
In previous installer named Ubiquity the following functionality existed for years:
User boots the LiveCD system in Try Ubuntu mode
User sets http_proxy using gnome-control-center network (in case of Ubuntu) as shown below
gnome-control-center network
User launches installer and waits it to complete, checks proxy setting on /target fs:
$ grep -r 222 /target/etc/apt/ /target/etc/apt/apt.conf:Acquire::http::Proxy "http://192.168.3.222:8000/";
User login into just installed fresh system and sees the proxy defined in the corresponded configuration file of APT
$ grep -r 222 /etc/apt/ /etc/apt/apt.conf:Acquire::http::Proxy "http://192.168.3.222:8000/";
New modern misses this very useful feature. Please implement it.
Relevant code in ubiquity:
subiquity does have a proxy endpoint, which seems to be used to configure apt, so maybe it's simply a matter of setting it from u-d-i ?
proxy
In previous installer named Ubiquity the following functionality existed for years:
User boots the LiveCD system in Try Ubuntu mode
User sets http_proxy using
gnome-control-center network
(in case of Ubuntu) as shown belowUser launches installer and waits it to complete, checks proxy setting on /target fs:
User login into just installed fresh system and sees the proxy defined in the corresponded configuration file of APT
New modern misses this very useful feature. Please implement it.