7 lines
143 B
Bash
7 lines
143 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
if [[ ! -f "config/config.yaml" ]]; then
|
||
|
./storagenode setup --config-dir config --identity-dir /app/identity
|
||
|
fi
|