diff --git a/tools/cleanup-host b/tools/cleanup-host
index c319ce0b83111fa8ca138253d88931bbf5d0c579..4d4c93eabab6e69e3aa2029ec2d60e995218df13 100755
--- a/tools/cleanup-host
+++ b/tools/cleanup-host
@@ -1,10 +1,5 @@
 #!/bin/bash
 
-# Move to top level directory
-REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')")
-cd "$(dirname "$REAL_PATH")/.."
-. tools/validate-docker-execute.sh
-
 # Spawning the neutron agents containers leaves artifacts on the host.
 # This script removes these artifacts.
 ip netns list | while read -r line ; do
@@ -57,4 +52,3 @@ for dir in $FOLDER_PATH*; do
         rm -rfv $dir
     fi
 done
-