mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
11 lines
243 B
Bash
11 lines
243 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
pkill file-server || true
|
||
|
echo "Running TUF server"
|
||
|
go run ./tools/file-server 8081 "${TUF_PATH}/repository" &
|
||
|
until curl --silent -o /dev/null http://localhost:8081/root.json; do
|
||
|
sleep 1
|
||
|
done
|
||
|
echo "TUF server started"
|