r13643: Enable script debug output to get some more details why some hosts
authorLars Müller <lmuelle@samba.org>
Thu, 23 Feb 2006 01:05:51 +0000 (01:05 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 16:10:20 +0000 (11:10 -0500)
return with !=0 after calling installmodules.sh AUTH_MODULES.
(This used to be commit 5a67b4f5be9960b24f5bb2ba0adcc25121c8a486)

source3/script/installmodules.sh

index 4ea8fde327dbc74ee39681b510b6d358a24dfbc0..47794d11359ffb897850904a9ec0a07d239963f1 100755 (executable)
@@ -19,6 +19,8 @@ fi
 fi
 done
 
+set -x
+
 for p in $*; do
  p2=`basename $p`
  echo Installing $p as $DESTDIR/$LIBDIR/$p2
@@ -26,4 +28,6 @@ for p in $*; do
  chmod $INSTALLPERMS $DESTDIR/$LIBDIR/$p2
 done
 
+set +x
+
 exit 0