From ad74aa2b09437fff0592de78d35afd3729c1f9c2 Mon Sep 17 00:00:00 2001 From: JJ Merelo Date: Wed, 10 Dec 2014 13:28:28 +0100 Subject: [PATCH] Adds LinuxMint --- lib/Rex/Pkg/LinuxMint.pm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lib/Rex/Pkg/LinuxMint.pm 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;