#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
# vim: set ts=2 sw=2 tw=0:
# vim: set expandtab:
package Rex::User;
use 5.010001;
use strict;
use warnings;
our $VERSION = '1.13.4'; # VERSION
use Rex::Commands::Gather;
use Rex::Logger;
sub get {
my $user_o = "Linux";
if (is_freebsd) {
$user_o = "FreeBSD";
}
elsif (is_netbsd) {
$user_o = "NetBSD";
}
elsif (is_openbsd) {
$user_o = "OpenBSD";
}
elsif ( operating_system_is("SunOS") ) {
$user_o = "SunOS";
}
elsif (is_openwrt) {
$user_o = "OpenWrt";
}
my $class = "Rex::User::" . $user_o;
eval "use $class";
if ($@) {
Rex::Logger::info("OS not supported");
die("OS not supported");
}
return $class->new;
}
1;