Revert a couple more files that I changed for debugging
diff --git a/containers/syndicate-ms/Makefile b/containers/syndicate-ms/Makefile
index 2c24afc..5a32a7e 100644
--- a/containers/syndicate-ms/Makefile
+++ b/containers/syndicate-ms/Makefile
@@ -1,6 +1,6 @@
 IMAGE_NAME:=xosproject/syndicate-ms
 CONTAINER_NAME:=xos-syndicate-ms
-NO_DOCKER_CACHE?=false
+NO_DOCKER_CACHE?=true
 
 .PHONY: build
 build: ; docker build --no-cache=${NO_DOCKER_CACHE} --rm -t ${IMAGE_NAME} .
@@ -16,4 +16,3 @@
 
 .PHONY: rmi
 rmi: ; docker rmi ${IMAGE_NAME}
-
diff --git a/containers/xos/Dockerfile b/containers/xos/Dockerfile
index d17b2a2..5c81aa8 100644
--- a/containers/xos/Dockerfile
+++ b/containers/xos/Dockerfile
@@ -34,7 +34,8 @@
     python-novaclient \
     python-neutronclient \
     python-glanceclient \
-    python-ceilometerclient
+    python-ceilometerclient \
+    openvpn
 
 RUN pip install \
     django==1.7 \
diff --git a/containers/xos/Makefile b/containers/xos/Makefile
index 1103407..cf91988 100644
--- a/containers/xos/Makefile
+++ b/containers/xos/Makefile
@@ -3,7 +3,7 @@
 TOSCA_CONFIG_PATH:=/opt/xos/configurations/opencloud/opencloud.yaml
 XOS_GIT_REPO?=git://github.com/open-cloud/xos.git
 XOS_GIT_BRANCH?=master
-NO_DOCKER_CACHE?=true
+NO_DOCKER_CACHE?=false
 
 .PHONY: build
 build: ; sudo docker build --no-cache=${NO_DOCKER_CACHE} --rm -t ${IMAGE_NAME} .