dlss-capistrano 5.1.0 → 5.1.1
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f69b0b30f58f3313e59a5fc7cf0d510d5c95d99fe5e077a772588e6ffdccbbd9
|
|
4
|
+
data.tar.gz: e0020c24765ddd757ee839371f962325900b147aa69a399c7ad97eb60b7babb8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e14e482febdd209f99802e0b4b0ac6323825da0312c6e50c21e97a51746fe651c8825691a9b0d86576b5239c7ba8328113c9df18565cc82a542d5cb158e0ba4
|
|
7
|
+
data.tar.gz: ddbc21daf2f1e259764d1257a741a9fb8208e8731e693c40daf9d15c49dfb6747615ce1161ce98f34e7757ae7eacd7cce5c09c3ccfde4c9c81b8cb654f5ad837
|
data/dlss-capistrano.gemspec
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
desc 'display the deployed branch and commit'
|
|
2
|
-
task deployed_branch: 'controlmaster:setup' do
|
|
2
|
+
task deployed_branch: ['controlmaster:setup', 'otk:generate'] do
|
|
3
3
|
# see https://github.com/mattbrictson/airbrussh/tree/v1.5.2?tab=readme-ov-file#capistrano-34x
|
|
4
4
|
Airbrussh.configure do |config|
|
|
5
5
|
config.truncate = false
|
|
@@ -10,7 +10,7 @@ namespace :load do
|
|
|
10
10
|
end
|
|
11
11
|
|
|
12
12
|
desc "execute command on all servers"
|
|
13
|
-
task :remote_execute, [:command] => 'controlmaster:setup' do |_task, args|
|
|
13
|
+
task :remote_execute, [:command] => ['controlmaster:setup', 'otk:generate'] do |_task, args|
|
|
14
14
|
raise ArgumentError, 'remote_execute task requires an argument' unless args[:command]
|
|
15
15
|
|
|
16
16
|
# see https://github.com/mattbrictson/airbrussh/tree/v1.5.2?tab=readme-ov-file#capistrano-34x
|