diff --git a/canto-test-docker-initd b/canto-test-docker-initd index 65dafc5869a7a79ee6a11e32e6327f12d8ef378c..611757c92cb04cf888d370fd32b49b25292f3289 100644 --- a/canto-test-docker-initd +++ b/canto-test-docker-initd @@ -22,12 +22,12 @@ case "$action" in stop) pid=`/bin/cat $CANTO_SPACE/$PID_PATH` echo stopping $pid - (cd $CANTO_SPACE; docker exec canto kill -TERM $pid) + (cd $CANTO_SPACE; docker exec canto-test kill -TERM $pid) ;; restart) pid=`/bin/cat $CANTO_SPACE/$PID_PATH` echo restarting $pid - (cd $CANTO_SPACE; docker exec canto kill -HUP $pid) + (cd $CANTO_SPACE; docker exec canto-test kill -HUP $pid) ;; *) echo "Usage: $0 {start|restart|stop}"