Browse Source

Merge pull request #14778 from thaJeztah/remove-rhel6-rpm-from-generate

Remove reference to CENTOS6 from generate script
Arnaud Porterie 10 years ago
parent
commit
a7d61882c0
1 changed files with 1 additions and 5 deletions
  1. 1 5
      contrib/builder/rpm/generate.sh

+ 1 - 5
contrib/builder/rpm/generate.sh

@@ -80,9 +80,5 @@ for version in "${versions[@]}"; do
 
 	echo 'ENV AUTO_GOPATH 1' >> "$version/Dockerfile"
 
-	if [ "$from" == "centos:6" ]; then
-		echo 'ENV DOCKER_BUILDTAGS selinux exclude_graphdriver_btrfs' >> "$version/Dockerfile"
-	else
-		echo 'ENV DOCKER_BUILDTAGS selinux' >> "$version/Dockerfile"
-	fi
+	echo 'ENV DOCKER_BUILDTAGS selinux' >> "$version/Dockerfile"
 done