Skip to content
Snippets Groups Projects
Commit 73c1cc1d authored by Bob Mottram's avatar Bob Mottram
Browse files

Sleep longer on low power hardware

parent 108f98b6
No related branches found
No related tags found
No related merge requests found
......@@ -593,8 +593,13 @@ function install_home_server {
sleep 5
if [ ! -f $MATRIX_DATA_DIR/homeserver.db ]; then
echo $'No matrix home server database was created'
exit 23782
# On low power systems more sleeping may be needed
sleep 10
if [ ! -f $MATRIX_DATA_DIR/homeserver.db ]; then
echo $'No matrix home server database was created'
exit 23782
fi
fi
chmod -R 700 $MATRIX_DATA_DIR/homeserver.db
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment