1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
#! /bin/sh /usr/share/dpatch/dpatch-run
## 09_program_not_found.dpatch by <benoit.mortier@opensides.be>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: change from utility to program
@DPATCH@
--- ldap2zone-0.1.orig/ldap2bind
+++ ldap2zone-0.1/newldap2bind
@@ -25,12 +25,12 @@
fi
if [ -z "${rndc}" ]; then
- echo "rndc utilty not in $PATH. Exiting..."
+ echo "rndc program not in $PATH. Exiting..."
exit 1
fi
if [ -z "${ldap2zone}" ]; then
- echo "ldap2zone utilty not in $PATH. Exiting..."
+ echo "ldap2zone program not in $PATH. Exiting..."
exit 1
fi
|