Repository URL to install this package:
|
Version:
2.58-1 ▾
|
#!/bin/sh
# smbprint script with slight modifications (name changes) for Turboprint
# This script is an input filter for printcap printing on a unix machine. It
# uses the smbclient program to print the file to the specified smb-based
# server and service.
# For example you could have a printcap entry like this
#
# smb:lp=/dev/null:sd=/usr/spool/smb:sh:if=/usr/local/samba/smbprint
#
# which would create a unix printer called "smb" that will print via this
# script. You will need to create the spool directory /usr/spool/smb with
# appropriate permissions and ownerships for your system.
# Set these to the server and service you wish to print to
# In this example I have a WfWg PC called "lapland" that has a printer
# exported called "printer" with no password.
#
# Script further altered by hamiltom@ecnz.co.nz (Michael Hamilton)
# so that the server, service, and password can be read from
# a /usr/var/spool/lpd/PRINTNAME/.config file.
#
# In order for this to work the /etc/printcap entry must include an
# accounting file (af=...):
#
# cdcolour:\
# :cm=CD IBM Colorjet on 6th:\
# :sd=/var/spool/lpd/cdcolour:\
# :af=/var/spool/lpd/cdcolour/acct:\
# :if=/usr/local/etc/smbprint:\
# :mx=0:\
# :lp=/dev/null:
#
# The /usr/var/spool/lpd/PRINTNAME/.config file should contain:
# share=PC_SERVER
# user="user"
# password="password"
#
# Please, do not modify the order in the file.
# Example:
# share=\\server\deskjet
# user="fred"
# password=""
#
# The first parameter to the filter is the config file name.
#
CONFIG_FILE=$1
# Should read the following variables set in the config file:
# REMOTESERVER
# REMOTEPRINTER
# REMOTEUSER
# REMOTEPASSWORD
# REMOTEWORKGROUP
# REMOTEIPADR
eval $(cat $CONFIG_FILE)
SHARE="//$REMOTESERVER/$REMOTEPRINTER"
if [ "$REMOTEUSER" != "" ]; then
USERCMD="-U"
else
USERCMD=""
fi
if [ "$REMOTEWORKGROUP" != "" ]; then
WORKGROUPCMD="-W"
else
WORKGROUPCMD=""
fi
COMMAND="print -"
# echo "share=$SHARE user=$REMOTEUSER \
# workgroup=$REMOTEWORKGROUP ip=$REMOTEIPADR \
# usercmd=$USERCMD workgroupcmd=$WORKGOUPCMD" >/tmp/smbprint.log
cat | /usr/bin/smbclient "$SHARE" "$REMOTEPASSWORD" -E ${REMOTEIPADR:+-I} \
$REMOTEIPADR -N -P $USERCMD "$REMOTEUSER" \
$WORKGROUPCMD "$REMOTEWORKGROUP" -c "$COMMAND"