mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 18:02:49 +00:00
ca986d3dcb
* Add mempool v2 * Update to v2.1.2 * Stop tor re-install on each upgrade * Add dates to changelog * Upgrade Mempool to v2
14 lines
237 B
Bash
Executable File
14 lines
237 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
# Wait a few second to give marker file a chance to get created
|
|
sleep 15s
|
|
|
|
# Check if
|
|
echo "Checking if docker images have been installed..."
|
|
while [ -f /tmp/installing_docker_images ]; do
|
|
sleep 30s
|
|
done
|
|
|
|
exit 0 |