From cb763241ea7c0d0a0299ce8f0914fd8af1c5220e Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Tue, 28 Jul 2020 13:55:42 +0200 Subject: [PATCH] give checks more appropriate names --- setup-scripts/setup-health-check-scripts.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup-scripts/setup-health-check-scripts.sh b/setup-scripts/setup-health-check-scripts.sh index f2927517..81ec5376 100755 --- a/setup-scripts/setup-health-check-scripts.sh +++ b/setup-scripts/setup-health-check-scripts.sh @@ -8,8 +8,8 @@ sudo apt-get -y install python3-pip pip3 install discord.py pip3 install python-dotenv -downloadCheck="0 0,8,16 * * * /home/user/skynet-webportal/setup-scripts/funds-checker.py /home/user/.sia/sia.env" -logCheck1="0 0,8,16 * * * /home/user/skynet-webportal/setup-scripts/log-checker.py /home/user/.sia/sia.env siad 8" +fundsCheck="0 0,8,16 * * * /home/user/skynet-webportal/setup-scripts/funds-checker.py /home/user/.sia/sia.env" +logsCheck="0 0,8,16 * * * /home/user/skynet-webportal/setup-scripts/log-checker.py /home/user/.sia/sia.env siad 8" -(crontab -u user -l; echo "$downloadCheck" ) | crontab -u user - -(crontab -u user -l; echo "$logCheck1" ) | crontab -u user - +(crontab -u user -l; echo "$fundsCheck" ) | crontab -u user - +(crontab -u user -l; echo "$logsCheck" ) | crontab -u user -