proceed with modprobe sequence even if one item returns an error code (#2295)

This commit is contained in:
mcgov 2022-10-03 15:00:07 -07:00 коммит произвёл GitHub
Родитель 62d2c132e2
Коммит 9a13182ae1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -99,9 +99,9 @@ class Modprobe(Tool):
if self.is_module_loaded(mod_name, force_run=True):
self.node.execute(
(
f"modprobe -r {mod_name} && modprobe {mod_name} && "
"ip link set eth0 down && ip link set eth0 up && "
"dhclient -r && dhclient"
f"'modprobe -r {mod_name}; modprobe {mod_name}; "
"ip link set eth0 down ; ip link set eth0 up; "
"dhclient -r; dhclient'"
),
sudo=True,
shell=True,