Description: Set some sensible defaults (derived from /etc/default/ldap2zone)
Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>

--- a/ldap2bind
+++ b/ldap2bind
@@ -1,5 +1,31 @@
 #!/bin/sh
 
+# Should we run the cronjob
+# DEFAULT: "false"
+RUN_DEPLOY="false"
+
+# How the LDAP server can be accessed
+# DEFAULT: ""
+# Example: "ldap://localhost"
+LDAP_URI=""
+
+# Where the bind config is stored
+# DEFAULT: "/etc/bind"
+BIND_DIR="/etc/bind"
+
+# Where the zonefiles are located
+# DEFAULT: "/var/cache/bind"
+BIND_DATA="/var/cache/bind"
+
+# Time to live value for a and ptr records
+# DEFAULT: 500 Seconds
+TTL="500"
+
+# Prefix for zone definition files
+# DEFAULT: "db."
+# The zone definition file for 0.168.192.in-addr.arpa is stored as 'db.0.168.192.in-addr.arpa'
+PREFIX="db."
+
 [ -r /etc/default/ldap2zone ] && . /etc/default/ldap2zone
 
 # if shell is non-interactive (e.g. like when called via CRON) and RUN_DEPLOY is false, exit silently.
