Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jjasghar/bazaar
Development repository for Chef cookbook bazaar
https://github.com/jjasghar/bazaar
Last synced: 26 days ago
JSON representation
Development repository for Chef cookbook bazaar
- Host: GitHub
- URL: https://github.com/jjasghar/bazaar
- Owner: jjasghar
- Created: 2015-02-06T23:12:56.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-06T23:16:22.000Z (almost 10 years ago)
- Last Synced: 2023-04-09T19:14:03.360Z (over 1 year ago)
- Language: Ruby
- Homepage: https://supermarket.chef.io/cookbooks/bazaar
- Size: 125 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# bazaar
This cookbook installs the [bazaar](http://bazaar.canonical.com/en/) application and provides an LWRP
to clone out repositories.To quote one of the [main sites](http://wiki.bazaar.canonical.com/WhoUsesBzr): "Arguably one of the best revision control systems in the world."
## Platform:
The following platform families are supported:- Ubuntu 12.04
- Ubuntu 14.04
- RHEL 7
- Fedora 20
- CentOS 7.0
- CentOS 6.5
- Debian 6.0.10
- Debian 7.8## Usage
This cookbook primarily installs bazaar core packages.
To install bazaar client (all supported platforms):
```
include_recipe 'bazaar'
```To leverage the LWRP to clone a specific repository off [Launchpad](http://launchpad.net/):
```ruby
bazaar 'friendly-name' do
source 'lp' # defaults to 'lp' if you omit the source
user 'my-user'
remote_path 'awesome_project/subproject'
local_path '/opt/'
end
```The above would in essence translate to something like the following:
```bash
$ cd /opt/
$ bzr branch lp:~my-user/awesome_project/subproject
```## License and Author
Author:: JJ Asghar ([email protected])
Author:: Fletcher Nichol ([email protected])
Copyright:: 2015, Chef Software, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at:```
http://www.apache.org/licenses/LICENSE-2.0
```Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.