From: Sébastien Han Date: Wed, 17 May 2017 16:20:02 +0000 (+0200) Subject: ceph-docker-lint: remove chcon command X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=3309ed1efec70ce54272d982c18b02065c32dd79;p=ceph-build.git ceph-docker-lint: remove chcon command selinux is disabled so this command is useless. Signed-off-by: Sébastien Han --- diff --git a/ceph-docker-lint/build/build b/ceph-docker-lint/build/build index d18e713f..9682e476 100755 --- a/ceph-docker-lint/build/build +++ b/ceph-docker-lint/build/build @@ -25,7 +25,6 @@ function check(){ while read -r filename; do pushd "$(dirname "$filename")" file=$(basename "$filename") - chcon -t svirt_sandbox_file_t "$file" docker run -v "$(pwd)"/"$file":/"$file" koalaman/shellcheck --external-sources --exclude "$IGNORE_THESE_CODES" /"$file" popd done