src/api2/config/network.rs: allow to update 'auto' flag

This commit is contained in:
Dietmar Maurer
2020-04-22 16:46:46 +02:00
parent 3fce3bc36e
commit f1026a5aa9
4 changed files with 14 additions and 5 deletions

View File

@ -282,7 +282,7 @@ impl <R: BufRead> NetworkParser<R> {
for iface in auto_flag.iter() {
if let Some(interface) = config.interfaces.get_mut(iface) {
interface.autostart = true;
interface.auto = true;
}
}