syntax fix [skip ci]

This commit is contained in:
wh1te909 2023-08-11 23:05:14 +00:00
parent cb4bc68c48
commit 82de6bc849
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ fi
if [[ $* == *--schedule* ]]; then if [[ $* == *--schedule* ]]; then
( (
crontab -l 2>/dev/null crontab -l 2>/dev/null
echo "0 0 * * * /rmm/backup.sh --auto" echo "0 0 * * * /rmm/backup.sh --auto > /dev/null 2>&1"
) | crontab - ) | crontab -
if [ ! -d /rmmbackups ]; then if [ ! -d /rmmbackups ]; then
@ -78,7 +78,7 @@ node /meshcentral/node_modules/meshcentral --dbexport # for import to postgres
if grep -q postgres "/meshcentral/meshcentral-data/config.json"; then if grep -q postgres "/meshcentral/meshcentral-data/config.json"; then
if ! which jq >/dev/null; then if ! which jq >/dev/null; then
sudo apt-get install -y jq >null sudo apt-get install -y jq >/dev/null
fi fi
MESH_POSTGRES_USER=$(jq '.settings.postgres.user' /meshcentral/meshcentral-data/config.json -r) MESH_POSTGRES_USER=$(jq '.settings.postgres.user' /meshcentral/meshcentral-data/config.json -r)
MESH_POSTGRES_PW=$(jq '.settings.postgres.password' /meshcentral/meshcentral-data/config.json -r) MESH_POSTGRES_PW=$(jq '.settings.postgres.password' /meshcentral/meshcentral-data/config.json -r)