diff options
author | Adam Jacob <adam@opscode.com> | 2009-05-26 17:00:57 -0700 |
---|---|---|
committer | Adam Jacob <adam@opscode.com> | 2009-05-26 17:00:57 -0700 |
commit | d402fb984ca6d6e93821dab045a5bfdfa7e7bebd (patch) | |
tree | fbe7999fd88a4f00f78c6ea56d1bbeb5f341e866 /features/data/cookbooks/synchronize_deps | |
parent | 8e1d1479986b3a055667ef6fa49a237afa71365f (diff) | |
download | chef-d402fb984ca6d6e93821dab045a5bfdfa7e7bebd.tar.gz |
Adding features for synchronization, fixing bugs in remote_directory, client, and compile, adding specs for cookbook selectivity
Diffstat (limited to 'features/data/cookbooks/synchronize_deps')
3 files changed, 58 insertions, 0 deletions
diff --git a/features/data/cookbooks/synchronize_deps/metadata.json b/features/data/cookbooks/synchronize_deps/metadata.json new file mode 100644 index 0000000000..893912f938 --- /dev/null +++ b/features/data/cookbooks/synchronize_deps/metadata.json @@ -0,0 +1,39 @@ +{ + "maintainer_email": "youremail@example.com", + "recipes": { + "synchronize_deps": "" + }, + "suggestions": { + + }, + "license": "Apache v2.0", + "conflicting": { + + }, + "dependencies": { + "synchronize": [ + + ] + }, + "attributes": { + + }, + "name": "synchronize_deps", + "providing": { + "synchronize_deps": [ + + ] + }, + "replacing": { + + }, + "long_description": "", + "description": "A fabulous new cookbook", + "maintainer": "Your Name", + "recommendations": { + + }, + "platforms": { + + } +}
\ No newline at end of file diff --git a/features/data/cookbooks/synchronize_deps/metadata.rb b/features/data/cookbooks/synchronize_deps/metadata.rb new file mode 100644 index 0000000000..b5b344c0bb --- /dev/null +++ b/features/data/cookbooks/synchronize_deps/metadata.rb @@ -0,0 +1 @@ +depends 'synchronize' diff --git a/features/data/cookbooks/synchronize_deps/recipes/default.rb b/features/data/cookbooks/synchronize_deps/recipes/default.rb new file mode 100644 index 0000000000..007931b4c6 --- /dev/null +++ b/features/data/cookbooks/synchronize_deps/recipes/default.rb @@ -0,0 +1,18 @@ +# +# Cookbook Name:: synchronize_deps +# Recipe:: default +# +# Copyright 2009, Opscode +# +# 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. +# |