summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2018-12-06 14:58:01 -0500
committerMichael R Sweet <michael.r.sweet@gmail.com>2018-12-06 14:58:01 -0500
commitf1def5b85f51120f5dc1eb21e1f38860ef41be9c (patch)
tree6f03cf6c4a8bb87340be5cf73687710032dd361e /man
parentdc5c941a67f25ec19fc1ab97e4b0ee849fb3ed63 (diff)
downloadcups-f1def5b85f51120f5dc1eb21e1f38860ef41be9c.tar.gz
Remove cupsaddsmb and associated documentation and infrastructure (Issue #5449)
Diffstat (limited to 'man')
-rw-r--r--man/Makefile1
-rw-r--r--man/cupsaddsmb.man.in122
2 files changed, 0 insertions, 123 deletions
diff --git a/man/Makefile b/man/Makefile
index 241a9d678..1335d7d2b 100644
--- a/man/Makefile
+++ b/man/Makefile
@@ -48,7 +48,6 @@ MAN7 = backend.$(MAN7EXT) \
filter.$(MAN7EXT) \
notifier.$(MAN7EXT)
MAN8 = cupsaccept.$(MAN8EXT) \
- cupsaddsmb.$(MAN8EXT) \
cupsctl.$(MAN8EXT) \
cupsfilter.$(MAN8EXT) \
cups-lpd.$(MAN8EXT) \
diff --git a/man/cupsaddsmb.man.in b/man/cupsaddsmb.man.in
deleted file mode 100644
index dd628b62b..000000000
--- a/man/cupsaddsmb.man.in
+++ /dev/null
@@ -1,122 +0,0 @@
-.\"
-.\" cupsaddsmb man page for CUPS.
-.\"
-.\" Copyright 2007-2014 by Apple Inc.
-.\" Copyright 1997-2006 by Easy Software Products.
-.\"
-.\" Licensed under Apache License v2.0. See the file "LICENSE" for more information.
-.\"
-.TH cupsaddsmb 8 "CUPS" "11 June 2014" "Apple Inc."
-.SH NAME
-cupsaddsmb \- export printers to samba for windows clients
-
-.SH SYNOPSIS
-.B cupsaddsmb
-[
-.B \-H
-.I samba-server
-] [
-.B \-U
-.I samba-user[%samba-password]
-] [
-.B \-h
-.I cups-server[:port]
-] [
-.B \-v
-]
-.B \-a
-.br
-.B cupsaddsmb
-[
-.B \-H
-.I samba-server
-] [
-.B \-U
-.I samba-user[%samba-password]
-] [
-.B \-h
-.I cups-server[:port]
-] [
-.B \-v
-]
-.I printer
-[ ...
-.I printer
-]
-.SH DESCRIPTION
-The \fBcupsaddsmb\fR program exports printers to the SAMBA software (version 2.2.0 or higher) for use with Windows clients.
-Depending on the SAMBA configuration, you may need to provide a password to export the printers.
-This program requires the Windows printer driver files described below.
-.SS SAMBA CONFIGURATION
-\fBcupsaddsmb\fR uses the RPC-based printing support in SAMBA to provide printer drivers and PPD files to Windows client machines.
-In order to use this functionality, you must first configure the SAMBA
-.BR smb.conf (5)
-file to support printing through CUPS and provide a printer driver download
-share, as follows:
-.nf
-
- [global]
- load printers = yes
- printing = cups
- printcap name = cups
-
- [printers]
- comment = All Printers
- path = /var/spool/samba
- browseable = no
- public = yes
- guest ok = yes
- writable = no
- printable = yes
-
- [print$]
- comment = Printer Drivers
- path = /etc/samba/drivers
- browseable = yes
- guest ok = no
- read only = yes
- write list = root
-
-.fi
-This configuration assumes a FHS-compliant installation of SAMBA; adjust the [printers] and [print$] share paths accordingly on your system as needed.
-.SS MICROSOFT POSTSCRIPT DRIVERS FOR WINDOWS
-The base driver for Windows 2000 and higher is the Microsoft PostScript driver, which is available on any system running Windows 2000 or higher in the %WINDIR%\\SYSTEM32\\SPOOL\\DRIVERS\\W32X86\\3 folder for 32-bit drivers and %WINDIR%\\SYSTEM32\\SPOOL\\DRIVERS\\X64\\3 folder for 64-bit drivers.
-.LP
-Copy the 32-bit drivers to the \fI/usr/share/cups/drivers\fR directory and the 64-bit drivers to the \fI/usr/share/cups/drivers/x64\fR directory exactly as named below:
-.nf
-
- ps5ui.dll
- pscript.hlp
- pscript.ntf
- pscript5.dll
-
-.fi
-\fBNote:\fR Unlike Windows, case is significant - make sure that you use the lowercase filenames shown above, otherwise \fBcupsaddsmb\fR will fail to export the drivers.
-.SH OPTIONS
-\fBcupsaddsmb\fR supports the following options:
-.TP 5
-\fB\-H \fIsamba-server\fR
-Specifies the SAMBA server which defaults to the CUPS server.
-.TP 5
-\fB\-U \fIsamba-user\fR[\fB%\fIsamba-password\fR]
-Specifies the SAMBA print admin username which defaults to your current username.
-If the username contains a percent (%) character, then the text following the percent is treated as the SAMBA password to use.
-.TP 5
-.B \-a
-Exports all known printers.
-Otherwise only the named printers are exported.
-.TP 5
-\fB\-h \fIcups-server\fR[\fB:\fIport\fR]
-Specifies a different CUPS server to use.
-.TP 5
-.B \-v
-Specifies that verbose information should be shown.
-This is useful for debugging SAMBA configuration problems.
-.SH SEE ALSO
-.BR rpcclient (1),
-.BR smbclient (1),
-.BR smbd (8),
-.BR smb.conf (5),
-CUPS Online Help (http://localhost:631/help)
-.SH COPYRIGHT
-Copyright \[co] 2007-2018 by Apple Inc.