summaryrefslogtreecommitdiffstats
path: root/examples/printer-accounting/lp-acct
diff options
context:
space:
mode:
authorSamba Release Account <samba-bugs@samba.org>1996-07-23 03:30:56 +0000
committerSamba Release Account <samba-bugs@samba.org>1996-07-23 03:30:56 +0000
commit8d9143cbcfd930bf0c2cb3073beb6b27104df915 (patch)
tree276cc2a9efd982196d0a4166bba29bc358cfb8b1 /examples/printer-accounting/lp-acct
parent234b8c602209d966c5b82148b521d9711e08c4b3 (diff)
downloadsamba-8d9143cbcfd930bf0c2cb3073beb6b27104df915.tar.gz
samba-8d9143cbcfd930bf0c2cb3073beb6b27104df915.tar.xz
samba-8d9143cbcfd930bf0c2cb3073beb6b27104df915.zip
Some examples for printer accounting that I use with samba. lp-acct is
an example for a local printer off a samba server, hp5-redir is for a remote printer. acct-sum, does the stats from acct-all. There is an example printcap entry for the redirection of the printer. Lots more to come! <pkelly@ets.net> (This used to be commit 14bae3a0bd380c524409d36c75c13d4a6daa6302)
Diffstat (limited to 'examples/printer-accounting/lp-acct')
-rw-r--r--examples/printer-accounting/lp-acct38
1 files changed, 38 insertions, 0 deletions
diff --git a/examples/printer-accounting/lp-acct b/examples/printer-accounting/lp-acct
new file mode 100644
index 0000000000..3fe45f877f
--- /dev/null
+++ b/examples/printer-accounting/lp-acct
@@ -0,0 +1,38 @@
+#!/usr/bin/perl
+#
+# $Source: /data/src/mirror/cvs/samba/examples/printer-accounting/lp-acct,v $
+# $Id: lp-acct,v 1.1 1996/07/23 03:30:56 samba-bugs Exp $
+#
+# 0 == stdin == docuement
+# 1 == stdout == printer
+# 2 == stderr == logging
+#
+# Regular, with no redirection
+#
+
+umask(002);
+
+# -w132 -l66 -i0 -n pkelly -h master.fcp.oypi.com /var/log/lp-acct
+require "getopts.pl";
+&Getopts("w:l:i:n:h:");
+
+chomp($date = `date '+%Y-%m-%d.%T'`);
+
+($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
+ $atime,$mtime,$ctime,$blksize,$blocks)
+ = stat(STDIN);
+
+$cnt = 0;
+while (sysread(STDIN, $buf, 10240)) {
+ print $buf;
+ $cnt += ($buf =~ /^L/g);
+}
+
+$acct = shift;
+if (open(ACCT, ">>$acct")) {
+ print ACCT "$date $opt_n $opt_h $size $cnt\n";
+ close(ACCT);
+} else {
+ warn "Err: Can't account for it ($!)\n";
+ warn "Log: $date $opt_n $opt_h $size $cnt\n";
+}