alpha_omega 0.0.89 → 0.0.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/alpha_omega/version.rb +1 -1
- data/libexec/build +6 -3
- data/libexec/check +6 -3
- data/libexec/compare +6 -3
- data/libexec/config +6 -3
- data/libexec/deploy +6 -3
- data/libexec/dist +6 -3
- data/libexec/dna +6 -3
- data/libexec/hosts +6 -3
- data/libexec/invoke +6 -3
- data/libexec/release +6 -3
- data/libexec/restart +6 -3
- data/libexec/rollback +6 -3
- data/libexec/shell +6 -3
- data/libexec/stage +6 -3
- metadata +24 -26
data/lib/alpha_omega/version.rb
CHANGED
data/libexec/build
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
data/libexec/check
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
data/libexec/compare
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
data/libexec/config
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
data/libexec/deploy
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
data/libexec/dist
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
data/libexec/dna
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
data/libexec/hosts
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
data/libexec/invoke
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
data/libexec/release
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
data/libexec/restart
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
data/libexec/rollback
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
data/libexec/shell
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
data/libexec/stage
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
hst_this=$(hostname -s)
|
|
4
4
|
if ! echo "$hst_this" | egrep -q "^(admin|develop)"; then
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
# unless the .ao_no_proxy file exists
|
|
6
|
+
if [[ -f ".ao_no_proxy" ]]; then
|
|
7
|
+
# ssh into deploy host and run from there
|
|
8
|
+
exec bin/proxy $(basename $0) "$@"
|
|
9
|
+
exit 1
|
|
10
|
+
fi
|
|
8
11
|
fi
|
|
9
12
|
|
|
10
13
|
case "$(basename $0)" in
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alpha_omega
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 171
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 90
|
|
10
|
+
version: 0.0.90
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- David Nghiem
|
|
@@ -16,8 +16,7 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2011-08-31 00:00:00
|
|
20
|
-
default_executable:
|
|
19
|
+
date: 2011-08-31 00:00:00 Z
|
|
21
20
|
dependencies:
|
|
22
21
|
- !ruby/object:Gem::Dependency
|
|
23
22
|
name: grit
|
|
@@ -119,37 +118,36 @@ files:
|
|
|
119
118
|
- LICENSE
|
|
120
119
|
- README.mkd
|
|
121
120
|
- Procfile.rb
|
|
121
|
+
- libexec/dna
|
|
122
|
+
- libexec/invoke
|
|
123
|
+
- libexec/hosts
|
|
124
|
+
- libexec/rollback
|
|
125
|
+
- libexec/shell
|
|
126
|
+
- libexec/dist
|
|
127
|
+
- libexec/release
|
|
128
|
+
- libexec/check
|
|
122
129
|
- libexec/proxy
|
|
123
130
|
- libexec/build
|
|
124
|
-
- libexec/restart
|
|
125
|
-
- libexec/stage
|
|
126
|
-
- libexec/rollback
|
|
127
131
|
- libexec/compare
|
|
128
|
-
- libexec/shell
|
|
129
132
|
- libexec/deploy
|
|
133
|
+
- libexec/stage
|
|
130
134
|
- libexec/config
|
|
131
|
-
- libexec/
|
|
132
|
-
- libexec/check
|
|
133
|
-
- libexec/invoke
|
|
134
|
-
- libexec/hosts
|
|
135
|
-
- libexec/release
|
|
136
|
-
- libexec/dist
|
|
137
|
-
- lib/alpha_omega/utils.rb
|
|
138
|
-
- lib/alpha_omega/deploy.rb
|
|
135
|
+
- libexec/restart
|
|
139
136
|
- lib/alpha_omega/version.rb
|
|
140
|
-
- lib/alpha_omega/deploy/
|
|
137
|
+
- lib/alpha_omega/deploy/strategy.rb
|
|
138
|
+
- lib/alpha_omega/deploy/remote_dependency.rb
|
|
139
|
+
- lib/alpha_omega/deploy/scm.rb
|
|
140
|
+
- lib/alpha_omega/deploy/dependencies.rb
|
|
141
141
|
- lib/alpha_omega/deploy/strategy/base.rb
|
|
142
|
-
- lib/alpha_omega/deploy/strategy/checkout.rb
|
|
143
142
|
- lib/alpha_omega/deploy/strategy/remote.rb
|
|
144
|
-
- lib/alpha_omega/deploy/
|
|
143
|
+
- lib/alpha_omega/deploy/strategy/checkout.rb
|
|
144
|
+
- lib/alpha_omega/deploy/local_dependency.rb
|
|
145
145
|
- lib/alpha_omega/deploy/templates/maintenance.rhtml
|
|
146
|
-
- lib/alpha_omega/deploy/strategy.rb
|
|
147
|
-
- lib/alpha_omega/deploy/scm/base.rb
|
|
148
146
|
- lib/alpha_omega/deploy/scm/git.rb
|
|
149
|
-
- lib/alpha_omega/deploy/
|
|
150
|
-
- lib/alpha_omega/deploy
|
|
147
|
+
- lib/alpha_omega/deploy/scm/base.rb
|
|
148
|
+
- lib/alpha_omega/deploy.rb
|
|
149
|
+
- lib/alpha_omega/utils.rb
|
|
151
150
|
- bin/alpha_omega
|
|
152
|
-
has_rdoc: true
|
|
153
151
|
homepage: https://github.com/HeSYINUvSBZfxqA/alpha_omega
|
|
154
152
|
licenses: []
|
|
155
153
|
|
|
@@ -179,7 +177,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
179
177
|
requirements: []
|
|
180
178
|
|
|
181
179
|
rubyforge_project:
|
|
182
|
-
rubygems_version: 1.
|
|
180
|
+
rubygems_version: 1.8.17
|
|
183
181
|
signing_key:
|
|
184
182
|
specification_version: 3
|
|
185
183
|
summary: alpha_omega capistrano recipes
|