-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
144 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package Devel::AssertOS::Linux::OpenSUSE; | ||
|
||
use Devel::CheckOS; | ||
use strict; | ||
use warnings; | ||
|
||
use Devel::CheckOS::Helpers::LinuxOSrelease 'distributor_id'; | ||
|
||
no warnings 'redefine'; | ||
|
||
our $VERSION = '1.0'; | ||
|
||
sub os_is { | ||
my $id = distributor_id; | ||
|
||
Devel::CheckOS::os_is('Linux') && | ||
defined($id) && | ||
($id =~ /^opensuse-/) | ||
} | ||
|
||
sub expn { "The operating system is some version of OpenSUSE" } | ||
|
||
Devel::CheckOS::die_unsupported() unless ( os_is() ); | ||
|
||
=head1 COPYRIGHT and LICENCE | ||
Copyright 2024 David Cantrell | ||
This 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. | ||
=cut | ||
|
||
1; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package Devel::AssertOS::Linux::SLES; | ||
|
||
use Devel::CheckOS; | ||
use strict; | ||
use warnings; | ||
|
||
use Devel::CheckOS::Helpers::LinuxOSrelease 'distributor_id'; | ||
|
||
no warnings 'redefine'; | ||
|
||
our $VERSION = '1.0'; | ||
|
||
sub os_is { | ||
my $id = distributor_id; | ||
|
||
Devel::CheckOS::os_is('Linux') && | ||
defined($id) && | ||
$id eq 'sles'; | ||
} | ||
|
||
sub expn { "The operating system is SUSE Linux Enterprise Server" } | ||
|
||
Devel::CheckOS::die_unsupported() unless ( os_is() ); | ||
|
||
=head1 COPYRIGHT and LICENCE | ||
Copyright 2024 David Cantrell | ||
This 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. | ||
=cut | ||
|
||
1; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package Devel::AssertOS::Linux::SUSE; | ||
|
||
use Devel::CheckOS; | ||
use strict; | ||
use warnings; | ||
|
||
use Devel::CheckOS::Helpers::LinuxOSrelease 'distributor_id'; | ||
|
||
no warnings 'redefine'; | ||
|
||
our $VERSION = '1.0'; | ||
|
||
sub matches { map { "Linux::$_" } qw(SLES OpenSUSE) } | ||
|
||
sub os_is { Devel::CheckOS::os_is(matches()) } | ||
|
||
sub expn { "The operating system is some version of SUSE, (see Linux::SLES for the commercial variant, and Linux::OpenSUSE for the community version)" } | ||
|
||
Devel::CheckOS::die_unsupported() unless ( os_is() ); | ||
|
||
=head1 COPYRIGHT and LICENCE | ||
Copyright 2024 David Cantrell | ||
This 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. | ||
=cut | ||
|
||
1; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
NAME="SLES" | ||
VERSION="12" | ||
VERSION_ID="12" | ||
PRETTY_NAME="SUSE Linux Enterprise Server 12" | ||
ID="sles" | ||
ANSI_COLOR="0;32" | ||
CPE_NAME="cpe:/o:suse:sles:12" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
use warnings; | ||
use strict; | ||
use Test::More; | ||
use Devel::CheckOS qw(os_is os_isnt); | ||
use Devel::CheckOS::Helpers::LinuxOSrelease 'distributor_id'; | ||
|
||
local $^O = 'linux'; | ||
|
||
Devel::CheckOS::Helpers::LinuxOSrelease::_set_file('t/etc-os-release/sles'); | ||
ok(os_is('Linux::SLES'), "detected SLES"); | ||
ok(os_is('Linux::SUSE'), "... and also as SUSE"); | ||
ok(os_isnt('Linux::OpenSUSE'), "... but not as OpenSUSE"); | ||
|
||
Devel::CheckOS::Helpers::LinuxOSrelease::_set_file('t/etc-os-release/opensuse-tumbleweed'); | ||
ok(os_is('Linux::OpenSUSE'), "detected tumbleweed as OpenSUSE"); | ||
ok(os_is('Linux::SUSE'), "... and also as SUSE"); | ||
ok(os_isnt('Linux::SLES'), "... but not as SLES"); | ||
|
||
Devel::CheckOS::Helpers::LinuxOSrelease::_set_file('t/etc-os-release/opensuse-leap'); | ||
ok(os_is('Linux::OpenSUSE'), "detected leap as OpenSUSE"); | ||
ok(os_is('Linux::SUSE'), "... and also as SUSE"); | ||
|
||
done_testing; |