cpee-instantiation 1.0.22 → 1.0.23
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/cpee-instantiation.gemspec +1 -1
- data/lib/cpee-instantiation/instantiation.rb +6 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 04d532584a3d397d4732080f033da4cb3a98b97c6ea996e63b2644eee50af5bb
|
4
|
+
data.tar.gz: 8103a8b314fee21e4ebdff6b38c78e039ea5bf9d91a57490c8ab9a843c427de6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9efda290608c350efe378435557d616cd275b6ad1371a87a5a19b565e827c400684c6013b91bebbd0761dfb4747da7faf4ef9486923d32487b3df79a8abfda69
|
7
|
+
data.tar.gz: f1aa5d80335eedfebb7d04d540229d28eeaad8b0a73b37ddda56d7224d4e416272e796e7bd2e254283d2132728d4973fe5ce41ea318a1c1e08dab94422353e2c
|
data/cpee-instantiation.gemspec
CHANGED
@@ -431,7 +431,7 @@ end #}}}
|
|
431
431
|
opts[:redis_pid] ||= 'redis.pid' # use e.g. /var/run/redis.pid if you do global. Look it up in your redis config
|
432
432
|
opts[:redis_db_name] ||= 'redis.rdb' # use e.g. /var/lib/redis.rdb for global stuff. Look it up in your redis config
|
433
433
|
|
434
|
-
|
434
|
+
CPEE::redis_connect opts, 'Instantiation'
|
435
435
|
|
436
436
|
Proc.new do
|
437
437
|
parallel do
|
@@ -447,18 +447,18 @@ end #}}}
|
|
447
447
|
run InstantiateXML, opts[:cpee], false if post 'xml'
|
448
448
|
end
|
449
449
|
on resource 'url' do
|
450
|
-
run InstantiateUrl, opts[:cpee], opts[:self], opts[:
|
451
|
-
run InstantiateUrl, opts[:cpee], opts[:self], opts[:
|
450
|
+
run InstantiateUrl, opts[:cpee], opts[:self], opts[:redis], false if post 'url'
|
451
|
+
run InstantiateUrl, opts[:cpee], opts[:self], opts[:redis], true if post 'url_info'
|
452
452
|
end
|
453
453
|
on resource 'git' do
|
454
|
-
run InstantiateGit, opts[:cpee], opts[:self], opts[:
|
454
|
+
run InstantiateGit, opts[:cpee], opts[:self], opts[:redis] if post 'git'
|
455
455
|
end
|
456
456
|
on resource 'instance' do
|
457
|
-
run HandleInstance, opts[:cpee], opts[:self], opts[:
|
457
|
+
run HandleInstance, opts[:cpee], opts[:self], opts[:redis] if post 'instance'
|
458
458
|
end
|
459
459
|
on resource 'callback' do
|
460
460
|
on resource do
|
461
|
-
run ContinueTask, opts[:cpee], opts[:
|
461
|
+
run ContinueTask, opts[:cpee], opts[:redis] if post
|
462
462
|
end
|
463
463
|
end
|
464
464
|
end
|