Skip to main content

Mirror environment variables into a buildout section.

Project description

Detailed Documentation

Example usage

The value of this recipe is that its part can be referenced from other parts using the ${…} syntax. The recipe mirrors the current environment variables into its section, so that e.g. ${env:USER} will give the current user.

In addition to whatever is in the environment, UID and GID will be set to the effective user id and group id as reported by Python’s os module.

Let’s look at how this works:

>>> write('buildout.cfg',
... """
... [buildout]
... parts = env
...
... [env]
... recipe = gocept.recipe.env
... """)

This configuration references an environment variable called buildout-test-info. Lets set it so we know its value:

>>> import os
>>> os.environ['buildout-test-info'] = '42'

Running the buildout gives us:

>>> print 'start', system(buildout) # doctest:+ELLIPSIS
start...
Installing env.
<BLANKLINE>

And the installed.cfg recorded the corresponding environment value:

>>> cat('.installed.cfg')
[buildout]
...
[env]
...
GID = ...
...
UID = ...
...
buildout-test-info = 42
...

Contributors

Change history

1.0 (2008-07-22)

  • Created recipe with ZopeSkel [Christian Theune <ct@gocept.com>].

Download

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gocept.recipe.env-1.0.tar.gz (4.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page