Skip to content

Commit b115d27

Browse files
committed
add "net-tools-deprecated" pkg to the list
"net-tools-deprecated" pkg is required for command like netstat "net-tools" provides other utilities. Hence keeping both the packages. Signed-off-by: Vaishnavi Bhat <[email protected]>
1 parent 8808223 commit b115d27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

io/net/net_tools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ def install_dependencies():
3535
detected_distro = distro.detect()
3636
sm = SoftwareManager()
3737
if detected_distro.name == "SuSE":
38-
net_tools = ("net-tools", "traceroute")
38+
net_tools = ("net-tools", "traceroute", "net-tools-deprecated")
3939
else:
40-
net_tools = ("net-tools", "hostname", "traceroute")
40+
net_tools = ("net-tools", "hostname", "traceroute", "net-tools-deprecated")
4141
for pkg in net_tools:
4242
if not sm.check_installed(pkg) and not sm.install(pkg):
4343
raise AssertionError("%s package is need to test" % pkg)

0 commit comments

Comments
 (0)