summaryrefslogtreecommitdiff
path: root/examples/printing/smbprint
diff options
context:
space:
mode:
Diffstat (limited to 'examples/printing/smbprint')
-rwxr-xr-xexamples/printing/smbprint24
1 files changed, 21 insertions, 3 deletions
diff --git a/examples/printing/smbprint b/examples/printing/smbprint
index a80d60ce4fa..5a00a2a8aa8 100755
--- a/examples/printing/smbprint
+++ b/examples/printing/smbprint
@@ -1,4 +1,4 @@
-#!/bin/sh -x
+#!/bin/sh
# 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
@@ -20,6 +20,11 @@
# so that the server, service, and password can be read from
# a /usr/var/spool/lpd/PRINTNAME/.config file.
#
+# Script further modified by Richard Sharpe to fix some things.
+# Get rid of the -x on the first line, and add parameters
+#
+# -t now causes translate to be used when sending files
+#
# In order for this to work the /etc/printcap entry must include an
# accounting file (af=...):
#
@@ -53,7 +58,8 @@ logfile=/tmp/smb-print.log
# Extract the directory name from the file name.
# Concat this with /.config to get the config file.
#
-eval acct_file=\$$#
+TRANS=0
+eval acct_file=\${$#}
spool_dir=`dirname $acct_file`
config_file=$spool_dir/.config
@@ -63,6 +69,16 @@ config_file=$spool_dir/.config
# password
eval `cat $config_file`
+while getopts t c; do
+ case $c in
+ t)
+ TRANS=1
+ ;;
+
+ '?') # Bad parameters, ignore it ...
+ ;;
+ esac
+done
#
# Some debugging help, change the >> to > if you want to same space.
#
@@ -71,7 +87,9 @@ echo "server $server, service $service" >> $logfile
(
# NOTE You may wish to add the line `echo translate' if you want automatic
# CR/LF translation when printing.
-# echo translate
+ if [ $TRANS -eq 1 ]; then
+ echo translate
+ fi
echo "print -"
cat
) | /usr/local/samba/bin/smbclient "\\\\$server\\$service" $password -U $server -N -P >> $logfile