Remove validate-install-command.sh

This file is for kolla images.

Change-Id: I2c1a21790b65cf6537380d576c0abb4d16bd369b
This commit is contained in:
Mark Goddard 2020-11-20 08:42:52 +00:00
parent 6c2bb6b736
commit 202b4af1e9
1 changed files with 0 additions and 12 deletions

View File

@ -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