/usr/bin/juju is in juju 0.5+bzr531-0ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | #!/usr/bin/python
import sys
from juju.control import main
from juju.errors import JujuError
try:
main(sys.argv[1:])
except JujuError, error:
sys.exit("error: %s" % (error,))
|