14 lines
218 B
Bash
Executable File
14 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
cd ../ns1.jean-cloud.org
|
|
. deploy.sh
|
|
. .env
|
|
|
|
# Do not run if primary exists
|
|
[ -d "$DATA_DIR/keys" ] && echo 'ns1 found on this host. Aborting.' && exit 0
|
|
|
|
export keydir=""
|
|
run secondary
|