/usr/share/perl5/Rex/Commands/Gather.pm is in rex 1.4.1-1.
This file is owned by root:root, with mode 0o644.
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 | #
# (c) Jan Gehring <jan.gehring@gmail.com>
#
# vim: set ts=2 sw=2 tw=0:
# vim: set expandtab:
=head1 NAME
Rex::Commands::Gather - Hardware and Information gathering
=head1 DESCRIPTION
With this module you can gather hardware and software information.
All these functions will not be reported. These functions don't modify anything.
=head1 SYNOPSIS
operating_system_is("SuSE");
=head1 EXPORTED FUNCTIONS
=cut
package Rex::Commands::Gather;
use strict;
use warnings;
our $VERSION = '1.4.1'; # VERSION
use Data::Dumper;
use Rex::Hardware;
use Rex::Hardware::Host;
use Rex::Hardware::Network;
use Rex::Hardware::Memory;
use Rex::Helper::System;
use Rex::Commands;
require Rex::Exporter;
use base qw(Rex::Exporter);
use vars qw(@EXPORT);
@EXPORT = qw(operating_system_is network_interfaces memory
get_operating_system operating_system operating_system_version operating_system_release
is_freebsd is_netbsd is_openbsd is_redhat is_linux is_bsd is_solaris is_suse is_debian is_mageia is_windows is_alt is_openwrt is_gentoo is_fedora is_arch
get_system_information dump_system_information);
=head2 get_operating_system
Will return the current operating system name.
task "get-os", "server01", sub {
say get_operating_system();
};
Aliased by operating_system().
=cut
sub get_operating_system {
my $operatingsystem = Rex::Hardware::Host->get_operating_system();
return $operatingsystem || "unknown";
}
=head2 operating_system
Alias for get_operating_system()
=cut
sub operating_system {
return get_operating_system();
}
=head2 get_system_information
Will return a hash of all system information. These Information will be also used by the template function.
=cut
sub get_system_information {
return Rex::Helper::System::info();
}
=head2 dump_system_information
This function dumps all known system information on stdout.
=cut
sub dump_system_information {
my ($info) = @_;
my %sys_info = get_system_information();
inspect( \%sys_info,
{ prepend_key => '$', key_value_sep => " = ", no_root => 1 } );
}
=head2 operating_system_is($string)
Will return 1 if the operating system is $string.
task "is_it_suse", "server01", sub {
if( operating_system_is("SuSE") ) {
say "This is a SuSE system.";
}
};
=cut
sub operating_system_is {
my (@oses) = @_;
my $operatingsystem = Rex::Hardware::Host->get_operating_system();
for my $os (@oses) {
if ( $operatingsystem eq $os ) {
return 1;
}
}
return 0;
}
=head2 operating_system_version()
Will return the os release number as an integer. For example, it will convert 5.10 to 510, 10.04 to 1004 or 6.0.3 to 603.
task "prepare", "server01", sub {
if( operating_system_version() >= 510 ) {
say "OS Release is higher or equal to 510";
}
};
=cut
sub operating_system_version {
my ($os) = @_;
my $operatingsystemrelease = operating_system_release();
$operatingsystemrelease =~ s/[\.,]//g;
return $operatingsystemrelease;
}
=head2 operating_system_release()
Will return the os release number as is.
=cut
sub operating_system_release {
my ($os) = @_;
return Rex::Hardware::Host->get_operating_system_version();
}
=head2 network_interfaces
Return an HashRef of all the networkinterfaces and their configuration.
task "get_network_information", "server01", sub {
my $net_info = network_interfaces();
};
You can iterate over the devices as follow
my $net_info = network_interfaces();
for my $dev ( keys %{ $net_info } ) {
say "$dev has the ip: " . $net_info->{$dev}->{"ip"} . " and the netmask: " . $net_info->{$dev}->{"netmask"};
}
=cut
sub network_interfaces {
my $net = Rex::Hardware::Network->get();
return $net->{"networkconfiguration"};
}
=head2 memory
Return an HashRef of all memory information.
task "get_memory_information", "server01", sub {
my $memory = memory();
say "Total: " . $memory->{"total"};
say "Free: " . $memory->{"free"};
say "Used: " . $memory->{"used"};
say "Cached: " . $memory->{"cached"};
say "Buffers: " . $memory->{"buffers"};
};
=cut
sub memory {
my $mem = Rex::Hardware::Memory->get();
return $mem;
}
=head2 is_freebsd
Returns true if the target system is a FreeBSD.
task "foo", "server1", "server2", sub {
if(is_freebsd) {
say "This is a freebsd system...";
}
else {
say "This is not a freebsd system...";
}
};
=cut
sub is_freebsd {
my $os = @_ ? shift : get_operating_system();
if ( $os =~ m/FreeBSD/i ) {
return 1;
}
}
=head2 is_redhat
task "foo", "server1", sub {
if(is_redhat) {
# do something on a redhat system (like RHEL, Fedora, CentOS, Scientific Linux
}
};
=cut
sub is_redhat {
my $os = @_ ? shift : get_operating_system();
my @redhat_clones = (
"Fedora", "Redhat",
"CentOS", "Scientific",
"RedHatEnterpriseServer", "RedHatEnterpriseES",
"RedHatEnterpriseWorkstation", "RedHatEnterpriseWS",
"Amazon", "ROSAEnterpriseServer",
"CloudLinuxServer",
);
if ( grep { /$os/i } @redhat_clones ) {
return 1;
}
}
=head2 is_fedora
task "foo", "server1", sub {
if(is_fedora) {
# do something on a fedora system
}
};
=cut
sub is_fedora {
my $os = @_ ? shift : get_operating_system();
my @fedora_clones = ("Fedora");
if ( grep { /$os/i } @fedora_clones ) {
return 1;
}
}
=head2 is_suse
task "foo", "server1", sub {
if(is_suse) {
# do something on a suse system
}
};
=cut
sub is_suse {
my $os = @_ ? shift : get_operating_system();
my @suse_clones = ( "OpenSuSE", "SuSE", "openSUSE project" );
if ( grep { /$os/i } @suse_clones ) {
return 1;
}
}
=head2 is_mageia
task "foo", "server1", sub {
if(is_mageia) {
# do something on a mageia system (or other Mandriva followers)
}
};
=cut
sub is_mageia {
my $os = @_ ? shift : get_operating_system();
my @mdv_clones = ( "Mageia", "ROSADesktopFresh" );
if ( grep { /$os/i } @mdv_clones ) {
return 1;
}
}
=head2 is_debian
task "foo", "server1", sub {
if(is_debian) {
# do something on a debian system
}
};
=cut
sub is_debian {
my $os = @_ ? shift : get_operating_system();
my @debian_clones = ( "Debian", "Ubuntu", "LinuxMint", "Raspbian" );
if ( grep { /$os/i } @debian_clones ) {
return 1;
}
}
=head2 is_alt
task "foo", "server1", sub {
if(is_alt) {
# do something on a ALT Linux system
}
};
=cut
sub is_alt {
my $os = @_ ? shift : get_operating_system();
my @alt_clones = ("ALT");
if ( grep { /$os/i } @alt_clones ) {
return 1;
}
}
=head2 is_netbsd
Returns true if the target system is a NetBSD.
task "foo", "server1", "server2", sub {
if(is_netbsd) {
say "This is a netbsd system...";
}
else {
say "This is not a netbsd system...";
}
};
=cut
sub is_netbsd {
my $os = @_ ? shift : get_operating_system();
if ( $os =~ m/NetBSD/i ) {
return 1;
}
}
=head2 is_openbsd
Returns true if the target system is an OpenBSD.
task "foo", "server1", "server2", sub {
if(is_openbsd) {
say "This is an openbsd system...";
}
else {
say "This is not an openbsd system...";
}
};
=cut
sub is_openbsd {
my $os = @_ ? shift : get_operating_system();
if ( $os =~ m/OpenBSD/i ) {
return 1;
}
}
=head2 is_linux
Returns true if the target system is a Linux System.
task "prepare", "server1", "server2", sub {
if(is_linux) {
say "This is a linux system...";
}
else {
say "This is not a linux system...";
}
};
=cut
sub is_linux {
my $host = Rex::Hardware::Host->get();
if ( exists $host->{kernelname}
&& $host->{kernelname}
&& $host->{kernelname} =~ m/Linux/ )
{
return 1;
}
}
=head2 is_bsd
Returns true if the target system is a BSD System.
task "prepare", "server1", "server2", sub {
if(is_bsd) {
say "This is a BSD system...";
}
else {
say "This is not a BSD system...";
}
};
=cut
sub is_bsd {
my $host = Rex::Hardware::Host->get();
if ( $host->{"kernelname"} =~ m/BSD/ ) {
return 1;
}
}
=head2 is_solaris
Returns true if the target system is a Solaris System.
task "prepare", "server1", "server2", sub {
if(is_solaris) {
say "This is a Solaris system...";
}
else {
say "This is not a Solaris system...";
}
};
=cut
sub is_solaris {
my $host = Rex::Hardware::Host->get();
if ( exists $host->{kernelname}
&& $host->{kernelname}
&& $host->{"kernelname"} =~ m/SunOS/ )
{
return 1;
}
}
=head2 is_windows
Returns true if the target system is a Windows System.
=cut
sub is_windows {
my $host = Rex::Hardware::Host->get();
if ( $host->{"operatingsystem"} =~ m/^MSWin/
|| $host->{operatingsystem} eq "Windows" )
{
return 1;
}
}
=head2 is_openwrt
Returns true if the target system is an OpenWrt System.
=cut
sub is_openwrt {
my $os = get_operating_system();
if ( $os =~ m/OpenWrt/i ) {
return 1;
}
}
=head2 is_gentoo
Returns true if the target system is a Gentoo System.
=cut
sub is_gentoo {
my $os = get_operating_system();
if ( $os =~ m/Gentoo/i ) {
return 1;
}
}
=head2 is_arch
task "foo", "server1", sub {
if(is_arch) {
# do something on a arch system
}
};
=cut
sub is_arch {
my $os = @_ ? shift : get_operating_system();
my @arch_clones = ( "Arch", "Manjaro", "Antergos" );
if ( grep { /$os/i } @arch_clones ) {
return 1;
}
}
1;
|