diff --git a/lib/Rex/Pkg/LinuxMint.pm b/lib/Rex/Pkg/LinuxMint.pm new file mode 100644 index 000000000..e6f3c3142 --- /dev/null +++ b/lib/Rex/Pkg/LinuxMint.pm @@ -0,0 +1,29 @@ +# +# (c) Jan Gehring +# +# vim: set ts=2 sw=2 tw=0: +# vim: set expandtab: + +use strict; + +package Rex::Pkg::LinuxMint; + +use warnings; + +use Rex::Pkg::Debian; +use Rex::Commands::Run; +use Rex::Commands::File; + +use base qw(Rex::Pkg::Debian); + +sub new { + my $that = shift; + my $proto = ref($that) || $that; + my $self = $proto->SUPER::new(@_); + + bless( $self, $proto ); + + return $self; +} + +1;