1 |
Douglas Thrift |
3 |
#!D:/Perl/bin/perl.exe |
2 |
|
|
# |
3 |
|
|
# Host Update |
4 |
|
|
# |
5 |
|
|
# Douglas Thrift |
6 |
|
|
# |
7 |
|
|
# $Id$ |
8 |
|
|
|
9 |
|
|
use strict; |
10 |
|
|
use LWP::UserAgent; |
11 |
|
|
use POSIX; |
12 |
|
|
|
13 |
|
|
my $agent = LWP::UserAgent->new; |
14 |
|
|
my ($sysname, $nodename, $release, $version, $machine) = uname(); |
15 |
|
|
|
16 |
|
|
$agent->agent("Host Update/1.0 ($sysname $release $machine) "); |
17 |
|
|
|
18 |
Douglas Thrift |
4 |
my $response = $agent->post("http://www.douglasthrift.net/cgi-bin/hostupdate", |
19 |
|
|
[host => $nodename]); |
20 |
Douglas Thrift |
3 |
my $content = $response->content; |
21 |
|
|
|
22 |
|
|
print "$content |
23 |
|
|
"; |