fix making banlist importer wait for bitcoind to start up

This commit is contained in:
Jonas Nick 2019-03-29 09:44:30 +00:00
parent d50b37f560
commit bf184c17e0
No known key found for this signature in database
GPG Key ID: 4861DBF262123605
1 changed files with 3 additions and 2 deletions

View File

@ -237,12 +237,13 @@ in {
PermissionsStartOnly = "true";
};
};
systemd.services.bitcoind-add-banlist = {
description = "Bitcoin daemon banlist adder";
systemd.services.bitcoind-import-banlist = {
description = "Bitcoin daemon banlist importer";
requires = [ "bitcoind.service" ];
after = [ "bitcoind.service" ];
wantedBy = [ "multi-user.target" ];
preStart = ''
set +e
echo "Checking that bitcoind is up"
# Give bitcoind time to create pid file
sleep 2