File: testmodperl

package info (click to toggle)
libnet-ident-perl 1.20-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 148 kB
  • ctags: 22
  • sloc: perl: 830; makefile: 51
file content (14 lines) | stat: -rwxr-xr-x 194 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl -w

use strict;
use Apache;
use Apache::Constants qw(:common);

my $r = Apache->request;

$r->content_type('text/plain');
$r->send_http_header;

$r->print("mod_perl OK\n");

OK;