1# $Id: v2_6.pm,v 1.4 2008/11/05 22:52:35 drhyde Exp $ 2 3package Devel::AssertOS::Linux::v2_6; 4 5use Devel::CheckOS; 6use strict; 7use warnings; 8no warnings 'redefine'; 9 10our $VERSION = '1.3'; 11 12sub os_is { 13 Devel::CheckOS::os_is('Linux') && 14 `uname -r` =~ /^2\.6\./ ? 1 : 0; 15} 16 17sub expn { "The operating system has a Linux 2.6.x series kernel" } 18 19Devel::CheckOS::die_unsupported() unless(os_is()); 20 21=head1 COPYRIGHT and LICENCE 22 23Copyright 2007 - 2008 David Cantrell 24 25This software is free-as-in-speech software, and may be used, distributed, and modified under the terms of either the GNU General Public Licence version 2 or the Artistic Licence. It's up to you which one you use. The full text of the licences can be found in the files GPL2.txt and ARTISTIC.txt, respectively. 26 27=cut 28 291; 30