diff --git a/ansible_version.yml b/ansible_version.yml
index b4631223aadd3c59ab673649c6bcfd0225163a3f..268136df285fde75e4fcee895c6e3386c9cc1b9e 100644
--- a/ansible_version.yml
+++ b/ansible_version.yml
@@ -15,3 +15,18 @@
           - ansible_version.string is version(maximal_ansible_version, "<")
       tags:
         - check
+
+    - name: "Check that python netaddr is installed"
+      assert:
+        msg: "Python netaddr is not present"
+        that: "'127.0.0.1' | ipaddr"
+      tags:
+        - check
+
+    # CentOS 7 provides too old jinja version
+    - name: "Check that jinja is not too old (install via pip)"
+      assert:
+        msg: "Your Jinja version is too old, install via pip"
+        that: "{% set test %}It works{% endset %}{{ test == 'It works' }}"
+      tags:
+        - check