From 202b4af1e9f5b9c053ba4ac3ff051e275a86a5e0 Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Fri, 20 Nov 2020 08:42:52 +0000 Subject: [PATCH] Remove validate-install-command.sh This file is for kolla images. Change-Id: I2c1a21790b65cf6537380d576c0abb4d16bd369b --- tools/validate-install-command.sh | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100755 tools/validate-install-command.sh diff --git a/tools/validate-install-command.sh b/tools/validate-install-command.sh deleted file mode 100755 index bc74096902..0000000000 --- a/tools/validate-install-command.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -RES=0 - -for dockerfile in "$@"; do - if grep "apt-get install\|yum install" "$dockerfile"; then - echo "ERROR: $dockerfile has incorrectly formatted install command Should be in the form 'apt-get|yum -y install ...'" >&2 - RES=1 - fi -done - -exit $RES