Update cleanup_friendica.sh

changed bin/console user delete <user> -q to -y option as described in https://github.com/friendica/friendica/issues/8846
This commit is contained in:
ingoj 2020-07-11 21:39:54 +02:00
parent 04b2a140c6
commit ce5b75635c
1 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ for username in $( ${friendicapath}/bin/console user list active -c 10000 | grep
done
if [ ${pcheck} -eq 0 ]; then
echo "Delete unconfirmed user ${username}"
${friendicapath}/bin/console user delete "${username}" -q
${friendicapath}/bin/console user delete "${username}" -y
fi
fi
done
@ -114,7 +114,7 @@ for u in $( ${friendicapath}/bin/console user list active -c 10000 | grep -v '.*
done
if [ ${pcheck} -eq 0 ]; then
echo "Delete user ${username}"
${friendicapath}/bin/console user delete "${username}" -q
${friendicapath}/bin/console user delete "${username}" -y
notifyUserDeletion
fi
fi