hello,
got same behavior tonight, after ubuntu reboot for security updates (clicked from notification panel, red button "Reboot", all my 26x Dolibarr instances restarted without putting the install.lock file back in place.
I recreate all of them at one using this in shell on cloudron :
#!/bin/bash
BASE_DIR="/home/yellowtent/appsdata"
for appdir in "$BASE_DIR"/*; do
if [ -d "$appdir/data/dolibarr" ]; then
LOCKFILE="$appdir/data/dolibarr/install.lock"
if [ ! -f "$LOCKFILE" ]; then
echo "Create $LOCKFILE"
touch "$LOCKFILE"
else
echo "$LOCKFILE already exist"
fi
else
echo "no dolibarr in $appdir"
fi
done
dunno what I should do to see why it doesn't work appropriately 
thanks for any help !




