From a6bf4e6a55d2922a05b117f8e23535ec51cfdcd9 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Sat, 4 Nov 2017 05:14:44 +0100 Subject: T428: don't check the UUID in the EC2 detection script. --- scripts/ec2-check.pl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/ec2-check.pl b/scripts/ec2-check.pl index 03448ff5..09b923c4 100755 --- a/scripts/ec2-check.pl +++ b/scripts/ec2-check.pl @@ -25,11 +25,9 @@ use warnings; my $DMIDECODE = "/usr/sbin/dmidecode"; -my $UUID = `$DMIDECODE -s system-uuid`; my $SN = `$DMIDECODE -s system-serial-number`; -if( ($UUID =~ /^ec2.*/i) && - ($SN =~ /^ec2.*/i) ) +if( $SN =~ /^ec2.*/i ) { exit(0); } -- cgit v1.2.3