come basic changes;
[gitmo/MooseX-Daemonize.git] / lib / MooseX / Daemonize / SignalHandling.pm
diff --git a/lib/MooseX/Daemonize/SignalHandling.pm b/lib/MooseX/Daemonize/SignalHandling.pm
deleted file mode 100644 (file)
index 0b7cbfe..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-package MooseX::Daemonize::SignalHandling;
-use strict;    # because Kwalitee is pedantic
-use Moose::Role;
-
-our $VERSION = 0.01;
-
-# NOTE:
-# this would be an excellent canidate for
-# a parameterized role, since we would want
-# to have the ability to specify which 
-# signals we want handled
-
-requires 'handle_signal';
-
-sub setup_signals {
-    my $self = shift;
-    foreach my $signal (qw[ INT HUP ]) {
-        $SIG{$signal}  = sub { $self->handle_signal($signal) };
-    }
-}
-
-1;
-
-__END__
-
-=pod
-
-=cut
\ No newline at end of file