mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
d6fc4eb405
(This used to be commit 8fde65239d
)
16 lines
399 B
Bash
Executable File
16 lines
399 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# create printcap file
|
|
#
|
|
if [ -r /usr/samba/printcap ]
|
|
then
|
|
cp /usr/samba/printcap /usr/samba/printcap.O
|
|
fi
|
|
|
|
echo "#" > /usr/samba/printcap
|
|
echo "# Samba printcap file" >> /usr/samba/printcap
|
|
echo "# Alias names are separated by |, any name with spaces is taken as a comment" >> /usr/samba/printcap
|
|
echo "#" >> /usr/samba/printcap
|
|
lpstat -a | sed -e "s/ .*//" >> /usr/samba/printcap
|
|
|