/dev/null || true'; } // Clean up server temp file if still exists (should already be cleaned) if (isSafeTmpPath($serverTmpPath)) { $commands[] = 'rm -f '.escapeshellarg($serverTmpPath).' 2>/dev/null || true'; } // Clean up any remaining files in database container (may already be cleaned) if (filled($container)) { if (isSafeTmpPath($containerTmpPath)) { $commands[] = 'docker exec '.escapeshellarg($container).' rm -f '.escapeshellarg($containerTmpPath).' 2>/dev/null || true'; } if (isSafeTmpPath($scriptPath)) { $commands[] = 'docker exec '.escapeshellarg($container).' rm -f '.escapeshellarg($scriptPath).' 2>/dev/null || true'; } } if (! empty($commands)) { $server = Server::find($serverId); if ($server) { instant_remote_process($commands, $server, throwError: false); } } } } }