The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#! /usr/bin/perl
# PODNAME: tapper-reports-receiver-daemon
# ABSTRACT: cmdline frontend to Tapper::Reports::Receiver::Daemon

use strict;
use warnings;

use Tapper::Reports::Receiver::Daemon;

my $receiver = new Tapper::Reports::Receiver::Daemon
    (
     pidfile => '/tmp/tapper-reports-receiver-daemon'.($ENV{HARNESS_ACTIVE} ? "-TESTMODE" : "").'.pid'
    );

$receiver->run;

__END__

=pod

=encoding UTF-8

=head1 NAME

tapper-reports-receiver-daemon - cmdline frontend to Tapper::Reports::Receiver::Daemon

=head1 AUTHOR

AMD OSRC Tapper Team <tapper@amd64.org>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2016 by Advanced Micro Devices, Inc..

This is free software, licensed under:

  The (two-clause) FreeBSD License

=cut