52 lines
1.0 KiB
Plaintext
52 lines
1.0 KiB
Plaintext
|
#!/bin/sh
|
||
|
# This is a modified version of 'ncpprint'. It can now be used as a CUPS
|
||
|
# backend.
|
||
|
# Modifications:
|
||
|
# Copyright (C) 2002 Red Hat, inc
|
||
|
# Copyright (C) 2002 Tim Waugh
|
||
|
# Before modification: shipped as /usr/share/printconf/util/ncpprint
|
||
|
|
||
|
if [ -z "$*" ]
|
||
|
then
|
||
|
# This is where we would enumerate all the URIs we support.
|
||
|
# Patches welcome.
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
FILE=$6
|
||
|
if [ -z "$FILE" ]
|
||
|
then
|
||
|
FILE=-
|
||
|
fi
|
||
|
|
||
|
# $DEVICE_URI is 'ncp://[user:password@]server/queue'
|
||
|
URI=${DEVICE_URI#*://}
|
||
|
queue=${URI#*/}
|
||
|
URI=${URI%/$queue}
|
||
|
server=${URI#*@}
|
||
|
URI=${URI%$server}
|
||
|
URI=${URI%@}
|
||
|
if [ -n "$URI" ]
|
||
|
then
|
||
|
user=${URI%:*}
|
||
|
URI=${URI#$user}
|
||
|
password=${URI#:}
|
||
|
fi
|
||
|
|
||
|
#echo user: ${user-(none)}
|
||
|
#echo password: ${password-(none)}
|
||
|
#echo server: $server
|
||
|
#echo queue: $queue
|
||
|
|
||
|
if [ -n "$user" ]
|
||
|
then
|
||
|
if [ -n "$password" ]
|
||
|
then
|
||
|
/usr/bin/nprint -S "$server" -q "$queue" -U "$user" -P "$password" -N "$FILE" 2>/dev/null
|
||
|
else
|
||
|
/usr/bin/nprint -S "$server" -q "$queue" -U "$user" -n -N "$FILE" 2>/dev/null
|
||
|
fi
|
||
|
else
|
||
|
/usr/bin/nprint -S "$server" -q "$queue" -N "$FILE" 2>/dev/null
|
||
|
fi
|