-
Notifications
You must be signed in to change notification settings - Fork 130
add "net-tools-deprecated" pkg to the list #3058
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
add "net-tools-deprecated" pkg to the list #3058
Conversation
|
avocado run net_tools.py -m net_tools.py.data/net_tools.yaml --max-parallel-tasks=1 |
"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]>
b115d27 to
96a7fba
Compare
| sm = SoftwareManager() | ||
| if detected_distro.name == "SuSE": | ||
| net_tools = ("net-tools", "traceroute") | ||
| net_tools = ("net-tools", "traceroute", "net-tools-deprecated") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vaishnavibhat is there any new tool available which can replace net-tools? or we are just dropping this and not going to use anymore?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vaishnavibhat is there any new tool available which can replace net-tools? or we are just dropping this and not going to use anymore?
Hi Naresh,
Few of the commands like netstat is being replaced by ss. Package wise, we have iproute2 which provides few utilities to collect the statistics. for the older commands to work, we need net-tools-deprecated
Thank you.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
net-tools is also deprecated.. should we remove that too ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"net-tools-deprecated" pkg is required for command like netstat "net-tools" provides other utilities. Hence keeping both the packages.