Skip to content
jaybuff edited this page Mar 11, 2011 · 5 revisions

Cookbook

Keeping track of what joot you're in

It's important to know what joot you're currently in. Joot sets an environment variable, JOOT_NAME so you can keep track of this.

$ echo $JOOT_NAME
ats-build
$ 

If you use bash you can set your prompt to tell you what joot you're in by adding something like this in your .bash_profile

if [ ! -z $JOOT_NAME ]; then
    export PS1="[\u@\H =>$JOOT_NAME<= \W]\n\t \\$ "
fi

Using sudo to limit who can run joot

TODO explain how /etc/sudoers works and give example snippet

Building 32 bit and 64 bit binaries on the same host

Clone this wiki locally