Hi all,
I would like to enable both Python-3.3 and PostgreSQL-9.2 environments at boot time.
Both use same variable: X_SCLS:
export X_SCLS="`scl enable python33 'echo $X_SCLS'`"
export X_SCLS="`scl enable postgresql92 'echo $X_SCLS'`"
So I think that the way to enable both environments is to combine them wiht a "," in the variable like:
export X_SCLS="`scl enable python33, scl enable postgresql92 'echo $X_SCLS'`"
Is that the proper way?
Thank you in advance,
Michel-André