Revert manifest to default one
[external/cups.git] / backend / pseudo
1 #!/bin/sh
2 #
3 # "$Id$"
4 #
5 #   Psuedo-backend for CUPS testing purposes.
6 #
7 #   Copyright 2011 by Apple Inc.
8 #
9 #   These coded instructions, statements, and computer programs are the
10 #   property of Apple Inc. and are protected by Federal copyright
11 #   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
12 #   which should have been included with this file.  If this file is
13 #   file is missing or damaged, see the license at "http://www.cups.org/".
14 #
15 #   This file is subject to the Apple OS-Developed Software exception.
16 #
17
18 if test $# = 0; then
19         echo 'direct pseudo:///deskjet "HP DeskJet" "HP DeskJet (pseudo)" "MFG:HP;MDL:DeskJet;CMD:PCL;" "Nowhere"'
20         echo 'direct pseudo:///laserjet "HP LaserJet" "HP LaserJet (pseudo)" "MFG:HP;MDL:LaserJet;CMD:PCL;" "Nowhere"'
21         exit 0
22 fi
23
24 cat $6 >/dev/null
25 sleep 5
26 exit 0
27
28 #
29 # End of "$Id$".
30 #