Added netdev tools group, and additional tools for bootstrap and python packages

Change-Id: I4c59a448319551e8439e047966ff266b8f8c9e89
diff --git a/tasks/Debian.yml b/tasks/Debian.yml
index 0e22f53..6c437d0 100644
--- a/tasks/Debian.yml
+++ b/tasks/Debian.yml
@@ -14,6 +14,7 @@
       - build-essential
       - ca-certificates
       - curl
+      - facter
       - file
       - git
       - git-crypt
@@ -31,6 +32,8 @@
       - sshpass
       - sudo
       - tar
+      - tmux
+      - twine
       - unzip
     state: present
     update_cache: true
diff --git a/tasks/netdev.yml b/tasks/netdev.yml
new file mode 100644
index 0000000..963e8e7
--- /dev/null
+++ b/tasks/netdev.yml
@@ -0,0 +1,23 @@
+---
+# devtools tasks/netdev.yml
+#
+# SPDX-FileCopyrightText: 2022 Open Networking Foundation <support@opennetworking.org>
+# SPDX-License-Identifier: Apache-2.0
+
+- name: install tools used for network development and troubleshooting
+  apt:
+    name:
+      - arping
+      - ethtool
+      - git
+      - iperf
+      - iperf3
+      - ipvsadm
+      - python3-scapy
+      - tcpdump
+      - tcpreplay
+      - traceroute
+      - tshark
+    state: present
+    update_cache: true
+    cache_valid_time: 3600