lnd postStart: make more idiomatic

- [[]]-style tests
- indent all multi-line statements the same way
This commit is contained in:
Erik Arvstedt 2019-11-27 14:04:40 +01:00
parent 6e58beae8a
commit 795c51dc01
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
1 changed files with 13 additions and 15 deletions

View File

@ -100,8 +100,7 @@ in {
sleep 5
if [ ! -f /secrets/lnd-seed-mnemonic ]
then
if [[ ! -f /secrets/lnd-seed-mnemonic ]]; then
echo Creating lnd seed
${pkgs.curl}/bin/curl -s \
@ -109,8 +108,7 @@ in {
-X GET https://127.0.0.1:8080/v1/genseed | ${pkgs.jq}/bin/jq -c '.cipher_seed_mnemonic' > /secrets/lnd-seed-mnemonic
fi
if [ ! -f ${cfg.dataDir}/chain/bitcoin/mainnet/wallet.db ]
then
if [[ ! -f ${cfg.dataDir}/chain/bitcoin/mainnet/wallet.db ]]; then
echo Creating lnd wallet
${pkgs.curl}/bin/curl -s \