New Cloudlinux settings?

Magistar

Verified User
Joined
May 31, 2014
Messages
86
I noticed a few lines being added regarding cloudlinux. Is there documentation available on the purpose of these options? (I searched KB and version history but it was not mentioned so far).

Code:
#CloudLinux Settings
cloudlinux=no
cloudlinux_beta=no
cagefs=no
 
Hi, I feel relive the Thread... but seeing that they havenot spoken about the option cloudlinux_beta. Any reference to know who makes this option? Is it so there are no problems with the packages in the testing repository?

Thanks!
 
Check the ./build script:

Code:
        CLOUDLINUX_BETA_OPT=`getOpt cloudlinux_beta ${CLOUDLINUX_BETA_DEF}`

Code:
        if [ "${CLOUDLINUX_BETA_OPT}" = "yes" ]; then
                VERSIONS_CL="versions_beta.txt"
        fi

and

Code:
                        if [ "${CLOUDLINUX_BETA_OPT}" = "yes" ]; then
                                LSAPI_RELEASE="beta"
                        fi


thus with the option enabled you will get beta versions of the related to CloudLinux software installed by custombuild script.
 
Back
Top