File: logerr.pm

package info (click to toggle)
mylvmbackup 0.13-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 236 kB
  • ctags: 76
  • sloc: perl: 1,465; sh: 127; makefile: 126
file content (16 lines) | stat: -rw-r--r-- 156 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl -w

package logerr;

use strict;

sub execute()
{
	my ($class, $dbh, $msg) = @_;

	# send an email with $msg to admin....

	return 1;
}

1;