You should not use \linebreak for paragraphs. It sets only an absolute break point, so the line is justified like each other line of a justified paragraph.
You should also not use \newline or \\ for paragraphs. Correct paragraphs are either \par or empty lines in the source code:
\documentclass[a5paper,openany,14pt,oneside,]{extbook}
\usepackage[left=2.34cm, right=2.34cm, top=2.66cm]{geometry}
\begin{document}
\chapter{Wine refrigerator}
Wine refrigerator is our newest product on the line. Refrigerated air flows around the bottles to make the wine cool on every side. The thermometer reading must be regularly checked. The temperature is 15 degrees.
The refrigerator must be installed in a cool dry place.
\end{document}

BTW: a5paper and 14pt is a little bit problematic with justified text. (See the overfull \hbox with the “The” in the example.) But you can improve it, using package microtype:
\documentclass[a5paper,openany,14pt,oneside,]{extbook}
\usepackage[left=2.34cm, right=2.34cm, top=2.66cm]{geometry}
\usepackage{microtype}
\begin{document}
\chapter{Wine refrigerator}
Wine refrigerator is our newest product on the line. Refrigerated air flows around the bottles to make the wine cool on every side. The thermometer reading must be regularly checked. The temperature is 15 degrees.
\par
The refrigerator must be installed in a cool dry place.
\end{document}

Edit, because of the changed MWE in the question (after already answering the original question!).
If you don't use \chapter, using extbook and option openany do not make much sense. In this case extarticle would be barely sufficient. So I'm using this class in the following answers.
With the standard classes or gently derived classes like the ext-classes, the best option to use paragraph distance (skip) instead of indenting the first line of a paragraph is the parskip package. In my opinion it also does not make much sense nor is it good style to mix general setting of paragraph skip with some only indented paragraphs. However, you can do it simply using an environment for the indented paragraphs:
\documentclass[a5paper,14pt]{extarticle}
\usepackage[left=2.34cm, right=2.34cm, top=2.66cm]{geometry}
\usepackage[skip=6pt plus 2pt minus 1pt]{parskip}% To use paragraph skip
% instead of indent.
\usepackage{microtype}
\newenvironment{indentedpar}{%
\par
\setlength{\parfillskip}{0pt plus 1fil}%
\setlength{\parindent}{1em}%
\setlength{\parskip}{0pt}%
}{%
\par
}
\begin{document}
Wine refrigerator is our newest product on the line. Refrigerated air flows around the bottles to make the wine cool on every side. The thermometer reading must be regularly checked. The temperature is 15 degrees.
\begin{indentedpar}
The refrigerator must be installed in a cool dry place.
\end{indentedpar}
\end{document}

But sometimes it makes indeed sense, to use paragraph indent as default and to have a kind of section without title but distance. In this case, defining a special paragraph command would be a good idea:
\documentclass[a5paper,14pt]{extarticle}
\usepackage[left=2.34cm, right=2.34cm, top=2.66cm]{geometry}
\usepackage{microtype}
\newcommand*{\microsection}{\par\medskip\noindent}% Alternatively you can use \smallskip or \bigskip or a \vspace{…}
\usepackage{lipsum}% useful for MWEs
\begin{document}
\lipsum[1]
\microsection
Wine refrigerator is our newest product on the line. Refrigerated air flows around the bottles to make the wine cool on every side. The thermometer reading must be regularly checked. The temperature is 15 degrees.
The refrigerator must be installed in a cool dry place.
\end{document}

\linebreak\indentinstead of\par? – Mico Feb 05 '23 at 18:22\linebreak\indentbecause those were what I've found to get the job done.\parmight be doing it better but I didn't know it at the time. – Lars Malmsteen Feb 05 '23 at 19:15lshortis reliable. – barbara beeton Feb 05 '23 at 19:47\raggedleftthinking that it would compress that line to left, but it didn't worked out :) then I tried\hfillIt didn't worked out either. After some time, it becomes a tedious trial-n-error game. – Lars Malmsteen Feb 05 '23 at 20:03\parskipalone and look at the commands\bigskipand\smallskipfor when vertical space is required. Or define my own\fancybreak(as it were) for such cases. – jon Feb 05 '23 at 20:43parskip. – jon Feb 05 '23 at 20:45\linebreakor\noindentexcept in exceptional cases. smply use a bank line between paragraphs (and add ``\usepackage{parskip}` so paragraphs have vertical spacinng – David Carlisle Feb 05 '23 at 20:51linebreakinterferes with the precedent line which it souldn't. I've triedparskipno change in situation, it didn't help. Thanks. – Lars Malmsteen Feb 05 '23 at 21:28parskippackage but it didn't help, it actually worsened the case. – Lars Malmsteen Feb 05 '23 at 21:39\linebreakis designed to produce exactly what you show: it forces a line break while maintaining justifcation so stretches the space on that line. If you "have to use\linebreakthere isn't really any answer, you are forcing the output you show. Any answer which does not stretch that line will not be using\linebreak– David Carlisle Feb 05 '23 at 21:46\textbf{hello}not bold, surely the answer is to not use\textbfnot to risk redefining a core command not to do the only thing it is designed to do. – David Carlisle Feb 06 '23 at 08:52\setlength{\parskip}{6pt plus 2pt minus 1pt}. For the cases where you want a vertical space before a paragraph use\smallskpor\vspace{\setlength{6pt plus 2pt minus 1pt}if you need exactly that. – David Carlisle Feb 06 '23 at 11:13