Miscellaneous bazaar issues
From Notes_Wiki
<yambe:breadcrumb>Bazaar|Bazaar</yambe:breadcrumb>
Miscellaneous bazaar issues
Storing authentication information in configuration files
If bazaar repository is hosted over http protocol then supplying username and password for every access of repository takes considerable time. To reduce effort in authenticating with server, at cost of additional security risk, one can use following steps for storing authentication information in configuration file:
- Create '~/.bazaar/authentication.conf' file with following contents
- [RAs]
- scheme=http
- host=ras.virtual-labs.ac.in
- user=saurabh
- password=<secret-password>
- Now test connection to given server by using bzr pull, bzr log, etc.
Steps have been learned using information from http://doc.bazaar.canonical.com/developers/authentication-ring.html