From 14fe294529d855da022f59b8d50e2081c9c76dba Mon Sep 17 00:00:00 2001 From: Ferenc Erki Date: Sun, 26 Jul 2015 13:51:56 +0200 Subject: [PATCH] Recognize LinuxMint as a Debian clone (close #506) --- lib/Rex/Commands/Gather.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Rex/Commands/Gather.pm b/lib/Rex/Commands/Gather.pm index 96f62fdf8..d5f2646a3 100644 --- a/lib/Rex/Commands/Gather.pm +++ b/lib/Rex/Commands/Gather.pm @@ -334,7 +334,7 @@ sub is_mageia { sub is_debian { my $os = @_ ? shift : get_operating_system(); - my @debian_clones = ( "Debian", "Ubuntu" ); + my @debian_clones = ( "Debian", "Ubuntu", "LinuxMint" ); if ( grep { /$os/i } @debian_clones ) { return 1;