[BACK]Return to dgl-create-chroot CVS log [TXT][DIR] Up to [contributed] / dgamelaunch-openbsd

Diff for /dgamelaunch-openbsd/dgl-create-chroot between version 1.6 and 1.7

version 1.6, 2021/04/02 09:59:19 version 1.7, 2021/04/02 10:11:01
Line 30  SQLITE_DBFILE="/dgldir/dgamelaunch.db"
Line 30  SQLITE_DBFILE="/dgldir/dgamelaunch.db"
 # only define this is dgl was configured without --enable-sqlite  # only define this is dgl was configured without --enable-sqlite
 #PASSWD_FILE="/dgldir/dgl-login"  #PASSWD_FILE="/dgldir/dgl-login"
   
   # only define this is dgl was configured without --enable-debugfile
   #DEBUGFILE="/dgldebug.log"
   
 # END OF CONFIG  # END OF CONFIG
 ##############################################################################  ##############################################################################
   
Line 120  fi
Line 123  fi
 if [ -n "PASSWD_FILE" ]; then  if [ -n "PASSWD_FILE" ]; then
       echo "Creating password file at $PASSWD_FILE"        echo "Creating password file at $PASSWD_FILE"
       touch "$CHROOT/$PASSWD_FILE"        touch "$CHROOT/$PASSWD_FILE"
         chown "$USRGRP" "$CHROOT/$PASSWD_FILE"
       chmod 0700 "$CHROOT/$PASSWD_FILE"        chmod 0700 "$CHROOT/$PASSWD_FILE"
   fi
   
   if [ -n "DEBUGFILE" ]; then
         echo "Creating debugfile at $DEBUGFILE"
         touch "$CHROOT/$DEBUGFILE"
         chown "$USRGRP" "$CHROOT/$DEBUGFILE"
         chmod 0700 "$CHROOT/$DEBUGFILE"
 fi  fi
   
 if [ -n "$COMPRESSBIN" -a -e "`which $COMPRESSBIN`" ]; then  if [ -n "$COMPRESSBIN" -a -e "`which $COMPRESSBIN`" ]; then

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

CVSweb