giraffesoft-chef 0.7.15
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +201 -0
- data/README.rdoc +135 -0
- data/bin/chef-client +26 -0
- data/bin/chef-solo +26 -0
- data/distro/debian/etc/init.d/chef-client +175 -0
- data/distro/debian/etc/init.d/chef-indexer +175 -0
- data/distro/debian/etc/init.d/chef-server +120 -0
- data/distro/debian/man/man1/chef-indexer.1 +42 -0
- data/distro/debian/man/man1/chef-server.1 +108 -0
- data/distro/debian/man/man8/chef-client.8 +61 -0
- data/distro/debian/man/man8/chef-solo.8 +58 -0
- data/distro/redhat/etc/chef/client.rb +16 -0
- data/distro/redhat/etc/chef/indexer.rb +10 -0
- data/distro/redhat/etc/chef/server.rb +22 -0
- data/distro/redhat/etc/init.d/chef-client +74 -0
- data/distro/redhat/etc/init.d/chef-indexer +76 -0
- data/distro/redhat/etc/init.d/chef-server +77 -0
- data/lib/chef.rb +49 -0
- data/lib/chef/application.rb +98 -0
- data/lib/chef/application/agent.rb +18 -0
- data/lib/chef/application/client.rb +209 -0
- data/lib/chef/application/indexer.rb +141 -0
- data/lib/chef/application/server.rb +18 -0
- data/lib/chef/application/solo.rb +214 -0
- data/lib/chef/client.rb +421 -0
- data/lib/chef/compile.rb +170 -0
- data/lib/chef/config.rb +141 -0
- data/lib/chef/cookbook.rb +171 -0
- data/lib/chef/cookbook/metadata.rb +407 -0
- data/lib/chef/cookbook/metadata/version.rb +87 -0
- data/lib/chef/cookbook_loader.rb +180 -0
- data/lib/chef/couchdb.rb +176 -0
- data/lib/chef/daemon.rb +170 -0
- data/lib/chef/exceptions.rb +36 -0
- data/lib/chef/file_cache.rb +205 -0
- data/lib/chef/log.rb +39 -0
- data/lib/chef/mixin/check_helper.rb +31 -0
- data/lib/chef/mixin/checksum.rb +37 -0
- data/lib/chef/mixin/command.rb +386 -0
- data/lib/chef/mixin/convert_to_class_name.rb +48 -0
- data/lib/chef/mixin/create_path.rb +56 -0
- data/lib/chef/mixin/deep_merge.rb +36 -0
- data/lib/chef/mixin/find_preferred_file.rb +92 -0
- data/lib/chef/mixin/from_file.rb +50 -0
- data/lib/chef/mixin/generate_url.rb +49 -0
- data/lib/chef/mixin/language.rb +79 -0
- data/lib/chef/mixin/params_validate.rb +197 -0
- data/lib/chef/mixin/recipe_definition_dsl_core.rb +77 -0
- data/lib/chef/mixin/template.rb +84 -0
- data/lib/chef/node.rb +406 -0
- data/lib/chef/node/attribute.rb +412 -0
- data/lib/chef/openid_registration.rb +181 -0
- data/lib/chef/platform.rb +254 -0
- data/lib/chef/provider.rb +101 -0
- data/lib/chef/provider/cron.rb +187 -0
- data/lib/chef/provider/deploy.rb +281 -0
- data/lib/chef/provider/deploy/revision.rb +70 -0
- data/lib/chef/provider/deploy/timestamped.rb +33 -0
- data/lib/chef/provider/directory.rb +72 -0
- data/lib/chef/provider/execute.rb +58 -0
- data/lib/chef/provider/file.rb +191 -0
- data/lib/chef/provider/git.rb +198 -0
- data/lib/chef/provider/group.rb +120 -0
- data/lib/chef/provider/group/gpasswd.rb +50 -0
- data/lib/chef/provider/group/groupadd.rb +78 -0
- data/lib/chef/provider/group/pw.rb +88 -0
- data/lib/chef/provider/group/usermod.rb +57 -0
- data/lib/chef/provider/http_request.rb +102 -0
- data/lib/chef/provider/ifconfig.rb +131 -0
- data/lib/chef/provider/link.rb +157 -0
- data/lib/chef/provider/mount.rb +117 -0
- data/lib/chef/provider/mount/mount.rb +208 -0
- data/lib/chef/provider/package.rb +160 -0
- data/lib/chef/provider/package/apt.rb +110 -0
- data/lib/chef/provider/package/dpkg.rb +109 -0
- data/lib/chef/provider/package/freebsd.rb +153 -0
- data/lib/chef/provider/package/macports.rb +105 -0
- data/lib/chef/provider/package/portage.rb +124 -0
- data/lib/chef/provider/package/rpm.rb +99 -0
- data/lib/chef/provider/package/rubygems.rb +136 -0
- data/lib/chef/provider/package/yum-dump.py +106 -0
- data/lib/chef/provider/package/yum.rb +175 -0
- data/lib/chef/provider/remote_directory.rb +126 -0
- data/lib/chef/provider/remote_file.rb +141 -0
- data/lib/chef/provider/route.rb +118 -0
- data/lib/chef/provider/ruby_block.rb +15 -0
- data/lib/chef/provider/script.rb +42 -0
- data/lib/chef/provider/service.rb +135 -0
- data/lib/chef/provider/service/debian.rb +64 -0
- data/lib/chef/provider/service/freebsd.rb +157 -0
- data/lib/chef/provider/service/gentoo.rb +54 -0
- data/lib/chef/provider/service/init.rb +71 -0
- data/lib/chef/provider/service/redhat.rb +62 -0
- data/lib/chef/provider/service/simple.rb +115 -0
- data/lib/chef/provider/subversion.rb +148 -0
- data/lib/chef/provider/template.rb +143 -0
- data/lib/chef/provider/user.rb +170 -0
- data/lib/chef/provider/user/pw.rb +113 -0
- data/lib/chef/provider/user/useradd.rb +107 -0
- data/lib/chef/queue.rb +145 -0
- data/lib/chef/recipe.rb +144 -0
- data/lib/chef/resource.rb +380 -0
- data/lib/chef/resource/apt_package.rb +34 -0
- data/lib/chef/resource/bash.rb +33 -0
- data/lib/chef/resource/cron.rb +179 -0
- data/lib/chef/resource/csh.rb +33 -0
- data/lib/chef/resource/deploy.rb +350 -0
- data/lib/chef/resource/deploy_revision.rb +35 -0
- data/lib/chef/resource/directory.rb +76 -0
- data/lib/chef/resource/dpkg_package.rb +34 -0
- data/lib/chef/resource/execute.rb +127 -0
- data/lib/chef/resource/file.rb +84 -0
- data/lib/chef/resource/gem_package.rb +41 -0
- data/lib/chef/resource/git.rb +36 -0
- data/lib/chef/resource/group.rb +70 -0
- data/lib/chef/resource/http_request.rb +52 -0
- data/lib/chef/resource/ifconfig.rb +134 -0
- data/lib/chef/resource/link.rb +78 -0
- data/lib/chef/resource/macports_package.rb +29 -0
- data/lib/chef/resource/mount.rb +135 -0
- data/lib/chef/resource/package.rb +80 -0
- data/lib/chef/resource/perl.rb +33 -0
- data/lib/chef/resource/portage_package.rb +33 -0
- data/lib/chef/resource/python.rb +33 -0
- data/lib/chef/resource/remote_directory.rb +91 -0
- data/lib/chef/resource/remote_file.rb +60 -0
- data/lib/chef/resource/route.rb +135 -0
- data/lib/chef/resource/ruby.rb +33 -0
- data/lib/chef/resource/ruby_block.rb +20 -0
- data/lib/chef/resource/scm.rb +129 -0
- data/lib/chef/resource/script.rb +51 -0
- data/lib/chef/resource/service.rb +134 -0
- data/lib/chef/resource/subversion.rb +33 -0
- data/lib/chef/resource/template.rb +60 -0
- data/lib/chef/resource/timestamped_deploy.rb +31 -0
- data/lib/chef/resource/user.rb +98 -0
- data/lib/chef/resource_collection.rb +204 -0
- data/lib/chef/resource_definition.rb +67 -0
- data/lib/chef/rest.rb +238 -0
- data/lib/chef/role.rb +231 -0
- data/lib/chef/run_list.rb +156 -0
- data/lib/chef/runner.rb +130 -0
- data/lib/chef/search.rb +88 -0
- data/lib/chef/search/result.rb +64 -0
- data/lib/chef/search_index.rb +77 -0
- data/lib/chef/tasks/chef_repo.rake +347 -0
- data/lib/chef/util/file_edit.rb +125 -0
- data/lib/chef/util/fileedit.rb +121 -0
- metadata +293 -0
@@ -0,0 +1,34 @@
|
|
1
|
+
#
|
2
|
+
# Author:: Adam Jacob (<adam@opscode.com>)
|
3
|
+
# Copyright:: Copyright (c) 2008 Opscode, Inc.
|
4
|
+
# License:: Apache License, Version 2.0
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'chef/resource/package'
|
20
|
+
require 'chef/provider/package/apt'
|
21
|
+
|
22
|
+
class Chef
|
23
|
+
class Resource
|
24
|
+
class AptPackage < Chef::Resource::Package
|
25
|
+
|
26
|
+
def initialize(name, collection=nil, node=nil)
|
27
|
+
super(name, collection, node)
|
28
|
+
@resource_name = :apt_package
|
29
|
+
@provider = Chef::Provider::Package::Apt
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
#
|
2
|
+
# Author:: Adam Jacob (<adam@opscode.com>)
|
3
|
+
# Copyright:: Copyright (c) 2008 Opscode, Inc.
|
4
|
+
# License:: Apache License, Version 2.0
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'chef/resource/script'
|
20
|
+
|
21
|
+
class Chef
|
22
|
+
class Resource
|
23
|
+
class Bash < Chef::Resource::Script
|
24
|
+
|
25
|
+
def initialize(name, collection=nil, node=nil)
|
26
|
+
super(name, collection, node)
|
27
|
+
@resource_name = :bash
|
28
|
+
@interpreter = "bash"
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,179 @@
|
|
1
|
+
#
|
2
|
+
# Author:: Bryan McLellan (btm@loftninjas.org)
|
3
|
+
# Copyright:: Copyright (c) 2009 Bryan McLellan
|
4
|
+
# License:: Apache License, Version 2.0
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'chef/resource'
|
20
|
+
|
21
|
+
class Chef
|
22
|
+
class Resource
|
23
|
+
class Cron < Chef::Resource
|
24
|
+
|
25
|
+
def initialize(name, collection=nil, node=nil)
|
26
|
+
super(name, collection, node)
|
27
|
+
@resource_name = :cron
|
28
|
+
@action = :create
|
29
|
+
@allowed_actions.push(:create, :delete)
|
30
|
+
@minute = "*"
|
31
|
+
@hour = "*"
|
32
|
+
@day = "*"
|
33
|
+
@month = "*"
|
34
|
+
@weekday = "*"
|
35
|
+
@command = nil
|
36
|
+
@user = "root"
|
37
|
+
@mailto = nil
|
38
|
+
@path = nil
|
39
|
+
@shell = nil
|
40
|
+
@home = nil
|
41
|
+
end
|
42
|
+
|
43
|
+
def minute(arg=nil)
|
44
|
+
if arg.is_a?(Integer)
|
45
|
+
converted_arg = arg.to_s
|
46
|
+
else
|
47
|
+
converted_arg = arg
|
48
|
+
end
|
49
|
+
begin
|
50
|
+
if Integer(arg) > 59 then raise RangeError end
|
51
|
+
rescue ArgumentError
|
52
|
+
end
|
53
|
+
set_or_return(
|
54
|
+
:minute,
|
55
|
+
converted_arg,
|
56
|
+
:kind_of => String
|
57
|
+
)
|
58
|
+
end
|
59
|
+
|
60
|
+
def hour(arg=nil)
|
61
|
+
if arg.is_a?(Integer)
|
62
|
+
converted_arg = arg.to_s
|
63
|
+
else
|
64
|
+
converted_arg = arg
|
65
|
+
end
|
66
|
+
begin
|
67
|
+
if Integer(arg) > 23 then raise RangeError end
|
68
|
+
rescue ArgumentError
|
69
|
+
end
|
70
|
+
set_or_return(
|
71
|
+
:hour,
|
72
|
+
converted_arg,
|
73
|
+
:kind_of => String
|
74
|
+
)
|
75
|
+
end
|
76
|
+
|
77
|
+
def day(arg=nil)
|
78
|
+
if arg.is_a?(Integer)
|
79
|
+
converted_arg = arg.to_s
|
80
|
+
else
|
81
|
+
converted_arg = arg
|
82
|
+
end
|
83
|
+
begin
|
84
|
+
if Integer(arg) > 31 then raise RangeError end
|
85
|
+
rescue ArgumentError
|
86
|
+
end
|
87
|
+
set_or_return(
|
88
|
+
:day,
|
89
|
+
converted_arg,
|
90
|
+
:kind_of => String
|
91
|
+
)
|
92
|
+
end
|
93
|
+
|
94
|
+
def month(arg=nil)
|
95
|
+
if arg.is_a?(Integer)
|
96
|
+
converted_arg = arg.to_s
|
97
|
+
else
|
98
|
+
converted_arg = arg
|
99
|
+
end
|
100
|
+
begin
|
101
|
+
if Integer(arg) > 12 then raise RangeError end
|
102
|
+
rescue ArgumentError
|
103
|
+
end
|
104
|
+
set_or_return(
|
105
|
+
:month,
|
106
|
+
converted_arg,
|
107
|
+
:kind_of => String
|
108
|
+
)
|
109
|
+
end
|
110
|
+
|
111
|
+
def weekday(arg=nil)
|
112
|
+
if arg.is_a?(Integer)
|
113
|
+
converted_arg = arg.to_s
|
114
|
+
else
|
115
|
+
converted_arg = arg
|
116
|
+
end
|
117
|
+
begin
|
118
|
+
if Integer(arg) > 7 then raise RangeError end
|
119
|
+
rescue ArgumentError
|
120
|
+
end
|
121
|
+
set_or_return(
|
122
|
+
:weekday,
|
123
|
+
converted_arg,
|
124
|
+
:kind_of => String
|
125
|
+
)
|
126
|
+
end
|
127
|
+
|
128
|
+
def mailto(arg=nil)
|
129
|
+
set_or_return(
|
130
|
+
:mailto,
|
131
|
+
arg,
|
132
|
+
:kind_of => String
|
133
|
+
)
|
134
|
+
end
|
135
|
+
|
136
|
+
def path(arg=nil)
|
137
|
+
set_or_return(
|
138
|
+
:path,
|
139
|
+
arg,
|
140
|
+
:kind_of => String
|
141
|
+
)
|
142
|
+
end
|
143
|
+
|
144
|
+
def home(arg=nil)
|
145
|
+
set_or_return(
|
146
|
+
:home,
|
147
|
+
arg,
|
148
|
+
:kind_of => String
|
149
|
+
)
|
150
|
+
end
|
151
|
+
|
152
|
+
def shell(arg=nil)
|
153
|
+
set_or_return(
|
154
|
+
:shell,
|
155
|
+
arg,
|
156
|
+
:kind_of => String
|
157
|
+
)
|
158
|
+
end
|
159
|
+
|
160
|
+
def command(arg=nil)
|
161
|
+
set_or_return(
|
162
|
+
:command,
|
163
|
+
arg,
|
164
|
+
:kind_of => String
|
165
|
+
)
|
166
|
+
end
|
167
|
+
|
168
|
+
def user(arg=nil)
|
169
|
+
set_or_return(
|
170
|
+
:user,
|
171
|
+
arg,
|
172
|
+
:kind_of => String
|
173
|
+
)
|
174
|
+
end
|
175
|
+
end
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
|
@@ -0,0 +1,33 @@
|
|
1
|
+
#
|
2
|
+
# Author:: Adam Jacob (<adam@opscode.com>)
|
3
|
+
# Copyright:: Copyright (c) 2008 Opscode, Inc.
|
4
|
+
# License:: Apache License, Version 2.0
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'chef/resource/script'
|
20
|
+
|
21
|
+
class Chef
|
22
|
+
class Resource
|
23
|
+
class Csh < Chef::Resource::Script
|
24
|
+
|
25
|
+
def initialize(name, collection=nil, node=nil)
|
26
|
+
super(name, collection, node)
|
27
|
+
@resource_name = :csh
|
28
|
+
@interpreter = "csh"
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,350 @@
|
|
1
|
+
#
|
2
|
+
# Author:: Daniel DeLeo (<dan@kallistec.com>)
|
3
|
+
# Copyright:: Copyright (c) 2008 Opscode, Inc.
|
4
|
+
# License:: Apache License, Version 2.0
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
# EX:
|
20
|
+
# deploy "/my/deploy/dir" do
|
21
|
+
# repo "git@github.com/whoami/project"
|
22
|
+
# revision "abc123" # or "HEAD" or "TAG_for_1.0" or (subversion) "1234"
|
23
|
+
# user "deploy_ninja"
|
24
|
+
# enable_submodules true
|
25
|
+
# migrate true
|
26
|
+
# migration_command "rake db:migrate"
|
27
|
+
# environment "RAILS_ENV" => "production", "OTHER_ENV" => "foo"
|
28
|
+
# shallow_clone true
|
29
|
+
# action :deploy # or :rollback
|
30
|
+
# restart_command "touch tmp/restart.txt"
|
31
|
+
# git_ssh_wrapper "wrap-ssh4git.sh"
|
32
|
+
# scm_provider Chef::Provider::Git # is the default, for svn: Chef::Provider::Subversion
|
33
|
+
# svn_username "whoami"
|
34
|
+
# svn_password "supersecret"
|
35
|
+
# end
|
36
|
+
|
37
|
+
require "chef/resource/scm"
|
38
|
+
|
39
|
+
class Chef
|
40
|
+
class Resource
|
41
|
+
|
42
|
+
# Deploy: Deploy apps from a source control repository.
|
43
|
+
#
|
44
|
+
# Callbacks:
|
45
|
+
# Callbacks can be a block or a string. If given a block, the code
|
46
|
+
# is evaluated as an embedded recipe, and run at the specified
|
47
|
+
# point in the deploy process. If given a string, the string is taken as
|
48
|
+
# a path to a callback file/recipe. Paths are evaluated relative to the
|
49
|
+
# release directory. Callback files can contain chef code (resources, etc.)
|
50
|
+
#
|
51
|
+
class Deploy < Chef::Resource
|
52
|
+
|
53
|
+
provider_base Chef::Provider::Deploy
|
54
|
+
|
55
|
+
def initialize(name, collection=nil, node=nil)
|
56
|
+
super(name, collection, node)
|
57
|
+
@resource_name = :deploy
|
58
|
+
@deploy_to = name
|
59
|
+
@environment = nil
|
60
|
+
@repository_cache = 'cached-copy'
|
61
|
+
@copy_exclude = []
|
62
|
+
@purge_before_symlink = %w{log tmp/pids public/system}
|
63
|
+
@create_dirs_before_symlink = %w{tmp public config}
|
64
|
+
@symlink_before_migrate = {"config/database.yml" => "config/database.yml"}
|
65
|
+
@symlinks = {"system" => "public/system", "pids" => "tmp/pids", "log" => "log"}
|
66
|
+
@revision = 'HEAD'
|
67
|
+
@action = :deploy
|
68
|
+
@migrate = false
|
69
|
+
@remote = "origin"
|
70
|
+
@enable_submodules = false
|
71
|
+
@shallow_clone = false
|
72
|
+
@scm_provider = Chef::Provider::Git
|
73
|
+
@provider = Chef::Provider::Deploy::Timestamped
|
74
|
+
@allowed_actions.push(:force_deploy, :deploy, :rollback)
|
75
|
+
end
|
76
|
+
|
77
|
+
# where the checked out/cloned code goes
|
78
|
+
def destination
|
79
|
+
@destination ||= shared_path + "/#{@repository_cache}/"
|
80
|
+
end
|
81
|
+
|
82
|
+
# where shared stuff goes, i.e., logs, tmp, etc. goes here
|
83
|
+
def shared_path
|
84
|
+
@shared_path ||= @deploy_to + "/shared"
|
85
|
+
end
|
86
|
+
|
87
|
+
# where the deployed version of your code goes
|
88
|
+
def current_path
|
89
|
+
@current_path ||= @deploy_to + "/current"
|
90
|
+
end
|
91
|
+
|
92
|
+
def depth
|
93
|
+
@shallow_clone ? "5" : nil
|
94
|
+
end
|
95
|
+
|
96
|
+
# note: deploy_to is your application "meta-root."
|
97
|
+
def deploy_to(arg=nil)
|
98
|
+
set_or_return(
|
99
|
+
:deploy_to,
|
100
|
+
arg,
|
101
|
+
:kind_of => [ String ]
|
102
|
+
)
|
103
|
+
end
|
104
|
+
|
105
|
+
def repo(arg=nil)
|
106
|
+
set_or_return(
|
107
|
+
:repo,
|
108
|
+
arg,
|
109
|
+
:kind_of => [ String ]
|
110
|
+
)
|
111
|
+
end
|
112
|
+
alias :repository :repo
|
113
|
+
|
114
|
+
def remote(arg=nil)
|
115
|
+
set_or_return(
|
116
|
+
:remote,
|
117
|
+
arg,
|
118
|
+
:kind_of => [ String ]
|
119
|
+
)
|
120
|
+
end
|
121
|
+
|
122
|
+
def role(arg=nil)
|
123
|
+
set_or_return(
|
124
|
+
:role,
|
125
|
+
arg,
|
126
|
+
:kind_of => [ String ]
|
127
|
+
)
|
128
|
+
end
|
129
|
+
|
130
|
+
def restart_command(arg=nil, &block)
|
131
|
+
arg ||= block
|
132
|
+
set_or_return(
|
133
|
+
:restart_command,
|
134
|
+
arg,
|
135
|
+
:kind_of => [ String, Proc ]
|
136
|
+
)
|
137
|
+
end
|
138
|
+
alias :restart :restart_command
|
139
|
+
|
140
|
+
def migrate(arg=nil)
|
141
|
+
set_or_return(
|
142
|
+
:migrate,
|
143
|
+
arg,
|
144
|
+
:kind_of => [ TrueClass, FalseClass ]
|
145
|
+
)
|
146
|
+
end
|
147
|
+
|
148
|
+
def migration_command(arg=nil)
|
149
|
+
set_or_return(
|
150
|
+
:migration_command,
|
151
|
+
arg,
|
152
|
+
:kind_of => [ String ]
|
153
|
+
)
|
154
|
+
end
|
155
|
+
|
156
|
+
def user(arg=nil)
|
157
|
+
set_or_return(
|
158
|
+
:user,
|
159
|
+
arg,
|
160
|
+
:kind_of => [ String ]
|
161
|
+
)
|
162
|
+
end
|
163
|
+
|
164
|
+
def group(arg=nil)
|
165
|
+
set_or_return(
|
166
|
+
:group,
|
167
|
+
arg,
|
168
|
+
:kind_of => [ String ]
|
169
|
+
)
|
170
|
+
end
|
171
|
+
|
172
|
+
def enable_submodules(arg=nil)
|
173
|
+
set_or_return(
|
174
|
+
:enable_submodules,
|
175
|
+
arg,
|
176
|
+
:kind_of => [ TrueClass, FalseClass ]
|
177
|
+
)
|
178
|
+
end
|
179
|
+
|
180
|
+
def shallow_clone(arg=nil)
|
181
|
+
set_or_return(
|
182
|
+
:shallow_clone,
|
183
|
+
arg,
|
184
|
+
:kind_of => [ TrueClass, FalseClass ]
|
185
|
+
)
|
186
|
+
end
|
187
|
+
|
188
|
+
def repository_cache(arg=nil)
|
189
|
+
set_or_return(
|
190
|
+
:repository_cache,
|
191
|
+
arg,
|
192
|
+
:kind_of => [ String ]
|
193
|
+
)
|
194
|
+
end
|
195
|
+
|
196
|
+
def copy_exclude(arg=nil)
|
197
|
+
set_or_return(
|
198
|
+
:copy_exclude,
|
199
|
+
arg,
|
200
|
+
:kind_of => [ String ]
|
201
|
+
)
|
202
|
+
end
|
203
|
+
|
204
|
+
def revision(arg=nil)
|
205
|
+
set_or_return(
|
206
|
+
:revision,
|
207
|
+
arg,
|
208
|
+
:kind_of => [ String ]
|
209
|
+
)
|
210
|
+
end
|
211
|
+
alias :branch :revision
|
212
|
+
|
213
|
+
def git_ssh_wrapper(arg=nil)
|
214
|
+
set_or_return(
|
215
|
+
:git_ssh_wrapper,
|
216
|
+
arg,
|
217
|
+
:kind_of => [ String ]
|
218
|
+
)
|
219
|
+
end
|
220
|
+
alias :ssh_wrapper :git_ssh_wrapper
|
221
|
+
|
222
|
+
def svn_username(arg=nil)
|
223
|
+
set_or_return(
|
224
|
+
:svn_username,
|
225
|
+
arg,
|
226
|
+
:kind_of => [ String ]
|
227
|
+
)
|
228
|
+
end
|
229
|
+
|
230
|
+
def svn_password(arg=nil)
|
231
|
+
set_or_return(
|
232
|
+
:svn_password,
|
233
|
+
arg,
|
234
|
+
:kind_of => [ String ]
|
235
|
+
)
|
236
|
+
end
|
237
|
+
|
238
|
+
def svn_arguments(arg=nil)
|
239
|
+
set_or_return(
|
240
|
+
:svn_arguments,
|
241
|
+
arg,
|
242
|
+
:kind_of => [ String ]
|
243
|
+
)
|
244
|
+
end
|
245
|
+
|
246
|
+
def scm_provider(arg=nil)
|
247
|
+
set_or_return(
|
248
|
+
:scm_provider,
|
249
|
+
arg,
|
250
|
+
:kind_of => [ Class ]
|
251
|
+
)
|
252
|
+
end
|
253
|
+
|
254
|
+
def environment(arg=nil)
|
255
|
+
if arg.is_a?(String)
|
256
|
+
Chef::Log.info "Setting RAILS_ENV, RACK_ENV, and MERB_ENV to `#{arg}'"
|
257
|
+
Chef::Log.warn "[DEPRECATED] please modify your deploy recipe or attributes to set the environment using a hash"
|
258
|
+
arg = {"RAILS_ENV"=>arg,"MERB_ENV"=>arg,"RACK_ENV"=>arg}
|
259
|
+
end
|
260
|
+
set_or_return(
|
261
|
+
:environment,
|
262
|
+
arg,
|
263
|
+
:kind_of => [ Hash ]
|
264
|
+
)
|
265
|
+
end
|
266
|
+
|
267
|
+
# An array of paths, relative to your app's root, to be purged from a
|
268
|
+
# SCM clone/checkout before symlinking. Use this to get rid of files and
|
269
|
+
# directories you want to be shared between releases.
|
270
|
+
# Default: ["log", "tmp/pids", "public/system"]
|
271
|
+
def purge_before_symlink(arg=nil)
|
272
|
+
set_or_return(
|
273
|
+
:purge_before_symlink,
|
274
|
+
arg,
|
275
|
+
:kind_of => Array
|
276
|
+
)
|
277
|
+
end
|
278
|
+
|
279
|
+
# An array of paths, relative to your app's root, where you expect dirs to
|
280
|
+
# exist before symlinking. This runs after #purge_before_symlink, so you
|
281
|
+
# can use this to recreate dirs that you had previously purged.
|
282
|
+
# For example, if you plan to use a shared directory for pids, and you
|
283
|
+
# want it to be located in $APP_ROOT/tmp/pids, you could purge tmp,
|
284
|
+
# then specify tmp here so that the tmp directory will exist when you
|
285
|
+
# symlink the pids directory in to the current release.
|
286
|
+
# Default: ["tmp", "public", "config"]
|
287
|
+
def create_dirs_before_symlink(arg=nil)
|
288
|
+
set_or_return(
|
289
|
+
:create_dirs_before_symlink,
|
290
|
+
arg,
|
291
|
+
:kind_of => Array
|
292
|
+
)
|
293
|
+
end
|
294
|
+
|
295
|
+
# A Hash of shared/dir/path => release/dir/path. This attribute determines
|
296
|
+
# which files and dirs in the shared directory get symlinked to the current
|
297
|
+
# release directory, and where they go. If you have a directory
|
298
|
+
# $shared/pids that you would like to symlink as $current_release/tmp/pids
|
299
|
+
# you specify it as "pids" => "tmp/pids"
|
300
|
+
# Default {"system" => "public/system", "pids" => "tmp/pids", "log" => "log"}
|
301
|
+
def symlinks(arg=nil)
|
302
|
+
set_or_return(
|
303
|
+
:symlinks,
|
304
|
+
arg,
|
305
|
+
:kind_of => Hash
|
306
|
+
)
|
307
|
+
end
|
308
|
+
|
309
|
+
# A Hash of shared/dir/path => release/dir/path. This attribute determines
|
310
|
+
# which files in the shared directory get symlinked to the current release
|
311
|
+
# directory and where they go. Unlike map_shared_files, these are symlinked
|
312
|
+
# *before* any migration is run.
|
313
|
+
# For a rails/merb app, this is used to link in a known good database.yml
|
314
|
+
# (with the production db password) before running migrate.
|
315
|
+
# Default {"config/database.yml" => "config/database.yml"}
|
316
|
+
def symlink_before_migrate(arg=nil)
|
317
|
+
set_or_return(
|
318
|
+
:symlink_before_migrate,
|
319
|
+
arg,
|
320
|
+
:kind_of => Hash
|
321
|
+
)
|
322
|
+
end
|
323
|
+
|
324
|
+
# Callback fires before migration is run.
|
325
|
+
def before_migrate(arg=nil, &block)
|
326
|
+
arg ||= block
|
327
|
+
set_or_return(:before_migrate, arg, :kind_of => [Proc, String])
|
328
|
+
end
|
329
|
+
|
330
|
+
# Callback fires before symlinking
|
331
|
+
def before_symlink(arg=nil, &block)
|
332
|
+
arg ||= block
|
333
|
+
set_or_return(:before_symlink, arg, :kind_of => [Proc, String])
|
334
|
+
end
|
335
|
+
|
336
|
+
# Callback fires before restart
|
337
|
+
def before_restart(arg=nil, &block)
|
338
|
+
arg ||= block
|
339
|
+
set_or_return(:before_restart, arg, :kind_of => [Proc, String])
|
340
|
+
end
|
341
|
+
|
342
|
+
# Callback fires after restart
|
343
|
+
def after_restart(arg=nil, &block)
|
344
|
+
arg ||= block
|
345
|
+
set_or_return(:after_restart, arg, :kind_of => [Proc, String])
|
346
|
+
end
|
347
|
+
|
348
|
+
end
|
349
|
+
end
|
350
|
+
end
|