From: Ivo Timmermans Date: Fri, 19 May 2000 00:09:20 +0000 (+0000) Subject: Find networks in instead of . X-Git-Tag: release-1.0pre2~38 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=59ca017df4c9d0f7861693b4d2ec4b7dc8c98b1e;hp=0354962c9885f04801d8469214c172cc012cdcec Find networks in instead of . --- diff --git a/debian/postinst b/debian/postinst index 25cc4c05..84830b73 100644 --- a/debian/postinst +++ b/debian/postinst @@ -1,7 +1,7 @@ #! /bin/sh # postinst script for tinc # -# $Id: postinst,v 1.3 2000/05/18 23:18:54 zarq Exp $ +# $Id: postinst,v 1.4 2000/05/19 00:09:20 zarq Exp $ # # see: dh_installdeb(1) @@ -41,7 +41,7 @@ case "$1" in if [ ! -e $NETSFILE ] ; then echo "## This file contains all names of the networks to be started on system startup." > $NETSFILE - find -maxdepth 1 -mindepth 1 -type d -printf "%f\n" >> $NETSFILE + find $TCONF -maxdepth 1 -mindepth 1 -type d -printf "%f\n" >> $NETSFILE fi ;;