/usr/share/gmod/chado/bin/GMODCallHome.pl is in chado-utils 1.31-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | #!/usr/bin/perl
use strict;
use warnings;
use VM::EC2;
use HTTP::Request::Common;
use LWP::UserAgent;
use FindBin '$Bin';
use constant REGISTRATION_SERVER
=> 'http://modencode.oicr.on.ca/cgi-bin/gbrowse_registration';
my $instance = VM::EC2->instance_metadata(); # should be a metadata object
my $userdata = $instance->userData;
my %userdata = map {split /\s*\:\s*/, $_ } split "\n", $userdata;
#check to see if this instance all ready called
exit 0 if (-f "$Bin/gitc_lock");
#check if user specifically doesn't want to call home
exit 0 if ($userdata{'NoCallHome'});
my $ipaddress = $instance->publicIpv4;
my @callhome = ( user => "GMOD in the Cloud:".$instance->imageId.'|'.$instance->instanceType,
email => $userdata{email} || '',
org => $userdata{org} || '',
organism => $userdata{organism} || '',
site => $ipaddress
);
print @callhome;
my $ua = LWP::UserAgent->new;
my $response = $ua->request(
POST(REGISTRATION_SERVER,
\@callhome
));
#to prevent the same instance from calling home more than once
open (LOCK, ">$Bin/gitc_lock");
print LOCK "Sending the 'call home' email. If you would like to suppress this in the\nfuture, add 'NoCallHome : 1' to the userdata when launching the instance.\n";
close LOCK;
exit 0;
|