forked from samba-team/samba
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
packaging: Move smbprint to a comman location.
This also removes all the duplicate smbprint scripts. This fixes bug #9301. Signed-off-by: Andreas Schneider <[email protected]> Signed-off-by: Stefan Metzmacher <[email protected]> Autobuild-User(master): Andreas Schneider <[email protected]> Autobuild-Date(master): Mon Oct 29 14:08:37 CET 2012 on sn-devel-104
- Loading branch information
1 parent
aa41104
commit 334044f
Showing
6 changed files
with
12 additions
and
269 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
The smbprint 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
#!/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 | ||
# 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 | ||
# 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 | ||
# 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 [email protected] (Michael Hamilton) | ||
# so that the server, service, and password can be read from | ||
# 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 | ||
# In order for this to work the /etc/printcap entry must include an | ||
# accounting file (af=...): | ||
# | ||
# cdcolour:\ | ||
|
@@ -47,7 +47,7 @@ | |
# Concat this with /.config to get the config file. | ||
# | ||
eval acct_file=\${$#} | ||
spool_dir=`dirname $acct_file` | ||
spool_dir=`dirname $acct_file` | ||
config_file=$spool_dir/.config | ||
|
||
# Should read the following variables set in the config file: | ||
|