aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-os-chef/scripts
diff options
context:
space:
mode:
authorTal Gitelman <tg851x@intl.att.com>2017-10-03 20:39:02 +0300
committerTal Gitelman <tg851x@intl.att.com>2017-10-03 20:39:02 +0300
commitedfe0df7d276c81a977d4f5699a683ab535d6618 (patch)
tree67d60d78beccd45e1e109941ee5cd0daac8c5491 /sdc-os-chef/scripts
parentc7af993fc69d59e96ac0f689ea9a9daf6e38efe0 (diff)
ONAP normative fixes
Change-Id: I3670033775c4cb2328494ce1e52f60b636f387f5 Issue-ID: SDC-410 Signed-off-by: Tal Gitelman <tg851x@intl.att.com>
Diffstat (limited to 'sdc-os-chef/scripts')
-rwxr-xr-xsdc-os-chef/scripts/docker_clean.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/sdc-os-chef/scripts/docker_clean.sh b/sdc-os-chef/scripts/docker_clean.sh
deleted file mode 100755
index 3979de6e73..0000000000
--- a/sdc-os-chef/scripts/docker_clean.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-pat=$1
-docker_ids=`docker ps -a | grep ${pat} | awk '{print $1}'`
-for X in ${docker_ids}
-do
- docker rm -f ${X}
-done
-
-