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 details)

Uploaded Source

File details

Details for the file gocept.recipe.env-1.0.tar.gz.

File metadata

File hashes

Hashes for gocept.recipe.env-1.0.tar.gz
Algorithm Hash digest
SHA256 37d4d8ebc1504560687aed3702c0f756947a9a0440f72247a937b8a1498c7f8b
MD5 72d7f17c49ec4c65db4f7f72c5809e56
BLAKE2b-256 91e59694fd80aa3b19fbcea55830fa91632b234be360bc2640b80db74da902d6

See more details on using hashes here.

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