#!/bin/bash
#####################################################################
##
## smb.conf parser class
##
## Copyright (C) Kurt Pfeifle <kpfeifle@danka.de>, 2004.
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, see <http://www.gnu.org/licenses/>.
##
######################################################################
######################################################################
## Here an example calling sequence
##!/bin/sh
## set -x
## source VampireDriversFunctions
##
## Start local variables
##
## You must define these variable (possibly in a source script)
## nthost=192.168.17.1
## printeradmin=Administrator
## adminpasswd=not4you
## smbhost=knoppix
## smbprinteradmin=knoppix
## smbadminpasswd=knoppix
##
## End of local variables
##
##
## functions to call
##
## fetchenumdrivers3listfromNThost # repeat, if no success at first
## createdrivernamelist
## createprinterlistwithUNCnames # repeat, if no success at first
## createmapofprinterstodriver
## splitenumdrivers3list
## makesubdirsforWIN40driverlist
#
|