From 71e1069dbe0e77dcad89cf49885e836648d9ae15 Mon Sep 17 00:00:00 2001 From: Marco Ochse Date: Mon, 13 Mar 2017 22:17:02 +0000 Subject: [PATCH] fix --- installer/bin/update-images.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/bin/update-images.sh b/installer/bin/update-images.sh index 68871277..52814057 100755 --- a/installer/bin/update-images.sh +++ b/installer/bin/update-images.sh @@ -34,7 +34,7 @@ touch /var/run/check.lock # Stop T-Pot services and disable all T-Pot services echo "### Stopping T-Pot services and cleaning up." -for i in $(cat /data/all_images.conf); +for i in $(cat /data/imgcfg/all_images.conf); do systemctl stop $i sleep 2 @@ -57,8 +57,8 @@ echo "### Starting docker services ..." systemctl start docker sleep 1 -# Enable only T-Pot upstart scripts from images.conf and pull the images -for i in $(cat /data/imgcfg/images.conf); +# Enable only T-Pot systemd scripts from images.conf and pull the images +for i in $(cat /data/images.conf); do echo echo "### Now pulling "$i