#!/bin/sh #---------------------------------------------------------------------------- # /var/install/bin/lprng-print - print lprng jobs # # Copyright (c) 2007 Thomas Bork, tom(at)eisfair(dot)net # # Creation : 2004-10-09 tb # Last Update: $Id: lprng-print 9844 2007-02-22 18:09:54Z jv $ # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #---------------------------------------------------------------------------- smbinfofile="/var/spool/lprng/$2.smbinfo" echo -e "queue=$1\njobfile=/tmp/$2\nuser=$3\nclient=$4\nprintserver=$5\nip=$6\nos=$7" > $smbinfofile chmod 666 $2 $smbinfofile /usr/bin/lpr -P$1 $2 rm -f $2 exit 0