Fix typo in run_db_install.sh.j2: linux_verion -> linux_version, and CRLF to LF

This commit is contained in:
Yacine31
2025-12-02 12:02:10 +01:00
parent 8772fef05a
commit 29a59efde3

View File

@@ -7,7 +7,7 @@ if [[ $chkifinstalled == 1 ]]; then
exit 0 exit 0
else else
linux_version=$(cat /etc/os-release | egrep "^VERSION=" | cut -d= -f2 | sed 's/"//g' | cut -d. -f1) linux_version=$(cat /etc/os-release | egrep "^VERSION=" | cut -d= -f2 | sed 's/"//g' | cut -d. -f1)
if [ "${linux_verion}" -eq 9 ] if [ "${linux_version}" -eq 9 ]
then then
export CV_ASSUME_DISTID=OL8 export CV_ASSUME_DISTID=OL8
else else