Initial devtools commit

Change-Id: Ia7b7afa7c5b310edfdb612c77fae49830a7bf5e7
diff --git a/tasks/Debian.yml b/tasks/Debian.yml
new file mode 100644
index 0000000..b61b40e
--- /dev/null
+++ b/tasks/Debian.yml
@@ -0,0 +1,34 @@
+---
+# devtools tasks/Debian.yml
+#
+# SPDX-FileCopyrightText: 2022 Open Networking Foundation <support@opennetworking.org>
+# SPDX-License-Identifier: Apache-2.0
+
+- name: install base Debian tools
+  apt:
+    name:
+      - acl
+      - apt-transport-https
+      - build-essential
+      - ca-certificates
+      - curl
+      - file
+      - git
+      - git-crypt
+      - gnupg
+      - jq
+      - libenchant-2-dev
+      - libxml2-utils
+      - python-is-python3
+      - python3
+      - python3-dev
+      - python3-pip
+      - python3-venv
+      - rsync
+      - sshpass
+      - sudo
+      - tar
+      - unzip
+    state: present
+    update_cache: true
+    cache_valid_time: 3600