Add netutils charm layer

Signed-off-by: Adam Israel <adam.israel@canonical.com>
diff --git a/layers/netutils/actions.yaml b/layers/netutils/actions.yaml
new file mode 100644
index 0000000..9995f77
--- /dev/null
+++ b/layers/netutils/actions.yaml
@@ -0,0 +1,32 @@
+nmap:
+  description: "nmap a thing!"
+  params:
+    destination:
+      description: "destination to scan"
+      type: string
+  required:
+    - destination
+ping:
+  description: 'ping a thing!'
+  params:
+    count:
+      description: "Stop after sending count ECHO_REQUEST packets"
+      type: integer
+      default: 30
+    destination:
+      description: "destination of ping request"
+      type: string
+  required:
+    - destination
+traceroute:
+  description: 'trace a thing!'
+  params:
+    hops:
+      description: "Stop tracing after count hops"
+      type: integer
+      default: 30
+    destination:
+      description: "destination of traceroute request"
+      type: string
+  required:
+    - destination