1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-14 19:24:43 +03:00
samba-mirror/packaging/SGI/mkprintcap.sh

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