We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59cce6b commit 73d45a2Copy full SHA for 73d45a2
util/cinc-install.sh
@@ -579,6 +579,12 @@ case $platform in
579
# FIXME: "el" is deprecated, should use "redhat"
580
platform_version=$major_version
581
;;
582
+ # Warning: the official script from CINC doesn't use major version for rocky,
583
+ # which is wrong according to the directory structure: https://downloads.cinc.sh/files/stable/cinc/18.7.10/rocky/
584
+ # The behavior should be the same as "el" above. Therefore, the following rocky section is manually added.
585
+ "rocky")
586
+ platform_version=$major_version
587
+ ;;
588
"debian")
589
if test "x$major_version" = "x5"; then
590
# This is here for potential back-compat.
0 commit comments