On April 1, 2021, we are moving all of our QuotaGuard Support Documentation to
https://quotaguard.github.io/qg-docs/
Please Update Your Support Bookmarks
Documentation for this article will be maintained at
https://quotaguard.github.io/qg-docs/quickstart-ruby
Please click on the above link to ensure you are reading
the most recent and updated documentation.
Many people handle this with a launch script. Basically make a .qgtunnel.staging
and a .qgtunnel.production
file.
Then in the launch script do something like this:
#!/bin/bash
if [ "$ENVIRONMENT" == "staging" ]; then
cp .qgtunnel.staging .qgtunnel
else
cp .qgtunnel.production .qgtunnel
fi
bin/qgtunnel $@
Then save that as something like bin/qglaunch. Then change your startup code to call bin/qglaunch with all your program arguments instead of bin/qgtunnel.
Others have saved the full .qgtunnel file into an environment variable and in the launch script they create the .qgtunnel file from the environment variable.
If you are using transparent mode, be sure that vendor/nss_wrapper/libnss_wrapper.so
is also added to your
repository.