diff options
author | Günther Deschner <gd@samba.org> | 2009-05-12 11:41:14 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-05-12 11:41:14 +0200 |
commit | 94665adb484c25534b756012e9b55f01737b7713 (patch) | |
tree | 3f34a7e4ead3e050c71642deb7f2ac9acd3c3cca /source3/script | |
parent | 66dff4073d0013bfd11ac29e341765141393ea23 (diff) | |
download | samba-94665adb484c25534b756012e9b55f01737b7713.tar.gz samba-94665adb484c25534b756012e9b55f01737b7713.tar.bz2 samba-94665adb484c25534b756012e9b55f01737b7713.zip |
s3-printing: Fix vlp testprinter application.
Jeremy, we cannot just access cache_path() here without calling lp_load and
friends as well as parsing configfile from the commandline in order to make
"make test/selftest" find the correct conffile with path, etc.
I just changed it to pass the target tdbfilename as an argument, ok ?
Guenther
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/tests/selftest.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/script/tests/selftest.sh b/source3/script/tests/selftest.sh index d069568257..8f078d2383 100755 --- a/source3/script/tests/selftest.sh +++ b/source3/script/tests/selftest.sh @@ -256,13 +256,13 @@ cat >$SERVERCONFFILE<<EOF copy = tmp printable = yes printing = vlp - print command = $BINDIR/vlp print %p %s - lpq command = $BINDIR/vlp lpq %p - lp rm command = $BINDIR/vlp lprm %p %j - lp pause command = $BINDIR/vlp lppause %p %j - lp resume command = $BINDIR/vlp lpresume %p %j - queue pause command = $BINDIR/vlp queuepause %p - queue resume command = $BINDIR/vlp queueresume %p + print command = $BINDIR/vlp tdbfile=$LOCKDIR/vlp.tdb print %p %s + lpq command = $BINDIR/vlp tdbfile=$LOCKDIR/vlp.tdb lpq %p + lp rm command = $BINDIR/vlp tdbfile=$LOCKDIR/vlp.tdb lprm %p %j + lp pause command = $BINDIR/vlp tdbfile=$LOCKDIR/vlp.tdb lppause %p %j + lp resume command = $BINDIR/vlp tdbfile=$LOCKDIR/vlp.tdb lpresume %p %j + queue pause command = $BINDIR/vlp tdbfile=$LOCKDIR/vlp.tdb queuepause %p + queue resume command = $BINDIR/vlp tdbfile=$LOCKDIR/vlp.tdb queueresume %p [print2] copy = print1 |