refactor(aio): use more intuitive log filepath
This commit is contained in:
parent
4210d2b4b1
commit
a4476654aa
|
@ -2,6 +2,7 @@
|
||||||
set -e -o pipefail
|
set -e -o pipefail
|
||||||
|
|
||||||
logFile=/var/log/aio/verify-setup.log
|
logFile=/var/log/aio/verify-setup.log
|
||||||
|
uploadServerLogFile=/var/log/aio/upload-server-verify-setup.log
|
||||||
|
|
||||||
exec 3>&1
|
exec 3>&1
|
||||||
exec >> $logFile
|
exec >> $logFile
|
||||||
|
@ -30,7 +31,7 @@ function onExit {
|
||||||
trap 'onExit' EXIT
|
trap 'onExit' EXIT
|
||||||
|
|
||||||
# Start an upload-server instance for testing
|
# Start an upload-server instance for testing
|
||||||
aio-upload-server-test start --log $logFile
|
aio-upload-server-test start --log $uploadServerLogFile
|
||||||
|
|
||||||
# Give the upload-server some time to start :(
|
# Give the upload-server some time to start :(
|
||||||
countdown "Starting" 5 > /dev/fd/3
|
countdown "Starting" 5 > /dev/fd/3
|
||||||
|
|
Loading…
Reference in New Issue