CI: use /tmp for ecosystem clone; fix rustfmt violations
All checks were successful
Mirror to GitHub / mirror (push) Successful in 2s
All checks were successful
Mirror to GitHub / mirror (push) Successful in 2s
This commit is contained in:
parent
d177cc8d82
commit
8aceab7857
4 changed files with 20 additions and 13 deletions
10
src/nm.rs
10
src/nm.rs
|
|
@ -319,7 +319,15 @@ pub fn connect_verbose(iface: &str, net: &NetworkDef, wait: u32, dns: &str) -> R
|
|||
}
|
||||
let o = run(
|
||||
"nmcli",
|
||||
&["--wait", &wait_s, "connection", "up", &profile, "ifname", iface],
|
||||
&[
|
||||
"--wait",
|
||||
&wait_s,
|
||||
"connection",
|
||||
"up",
|
||||
&profile,
|
||||
"ifname",
|
||||
iface,
|
||||
],
|
||||
Duration::from_secs(wait as u64 + 15),
|
||||
);
|
||||
if !o.success {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue