itamae-plugin-recipe-daddy 0.1.19 → 0.1.20

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b92a2bab537dcdb0a6ad5d66c440d074bbed35747bff8280f8547511a89c26f
4
- data.tar.gz: 6f66fcba5db0f1b33096428f494c2bd7e5c41fd728a802817b74ab4700a55c6e
3
+ metadata.gz: 1c2e6cea8e45da25a0cf71ef457031fe53c843fa0404b2e3226063b5cd3e806a
4
+ data.tar.gz: d6ce4b83b1100e39e30c3cb7b1ba5206054129de5d181666d0659a08e221634f
5
5
  SHA512:
6
- metadata.gz: b779f4c9f94dbac651aa5947b733522c04f63f75db2a8a0c413dc45e93043ce45083104f2d35bfafb9ffdd2e2415097b44cd987c851d3db77c75d4a94865dc65
7
- data.tar.gz: 044c99a9c8c6bba24e57cad58c5031366c596715fae458bfd2bb30c78a761236e408012baf2fadb7cb573c3b04139f7237330bb55fcfe6139368b6a9b8fe2f32
6
+ metadata.gz: 4f14ddf9b8fb2c97ee46eb45a584d1986a5bd6d849b50c7a1c9f2391ae7541bda35175e04ba5ac3474c40c5d99ff3f99a8e83da7cd52eee9c382a355121479ce
7
+ data.tar.gz: 7ac9fd5e195bb844174a466ce38e180085c3d3e1e247ee47e8639bbf87aca65df9399bf4cc3a54ea3f47ad8abad7cad805acbab07334c8447ad00623a5eef515
@@ -24,6 +24,7 @@ Gem::Specification.new do |spec|
24
24
  spec.add_dependency 'itamae', '~> 1.10', '>= 1.10.2'
25
25
  spec.add_dependency 'itamae-plugin-recipe-passenger', '~> 0.1'
26
26
  spec.add_dependency 'itamae-plugin-recipe-selenium', '~> 0.1'
27
+ spec.add_dependency 'itamae-plugin-resource-pip', '~> 1.1'
27
28
 
28
29
  spec.add_development_dependency "bundler", "~> 2.0"
29
30
  spec.add_development_dependency "rake", "~> 12.3"
@@ -0,0 +1 @@
1
+ 4c373e7ab5bf91d34a4f11a0c9496561061ba5eee6020db272a17a7228d35f99 nginx-1.18.0.tar.gz
@@ -31,7 +31,7 @@ http {
31
31
 
32
32
  proxy_cache_path /opt/nginx/cache levels=1:2 keys_zone=cache:512m inactive=1d max_size=60g;
33
33
 
34
- passenger_root <%= `sudo passenger-config about root` %>;
34
+ passenger_root /opt/passenger/current;
35
35
  passenger_instance_registry_dir /var/run/passenger-instreg;
36
36
 
37
37
  server {
@@ -1,10 +1,10 @@
1
1
  module ItamaePluginRecipeDaddy
2
- VERSION = '0.1.19'
2
+ VERSION = '0.1.20'
3
3
 
4
4
  NGINX_VERSION = [
5
5
  NGINX_VERSION_MAJOR = '1',
6
- NGINX_VERSION_MINOR = '16',
7
- NGINX_VERSION_PATCH = '1'
6
+ NGINX_VERSION_MINOR = '18',
7
+ NGINX_VERSION_PATCH = '0'
8
8
  ].join('.')
9
9
 
10
10
  NGINX_RTMP_MODULE_VERSION = [
@@ -19,12 +19,6 @@ module ItamaePluginRecipeDaddy
19
19
  OPENCV_VERSION_PATCH = '1'
20
20
  ].join('.')
21
21
 
22
- PASSENGER_VERSION = [
23
- PASSENGER_VERSION_MAJOR = '6',
24
- PASSENGER_VERSION_MINOR = '0',
25
- PASSENGER_VERSION_PATCH = '2'
26
- ].join('.')
27
-
28
22
  PYTHON_VERSION = [
29
23
  PYTHON_VERSION_MAJOR = '3',
30
24
  PYTHON_VERSION_MINOR = '6',
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itamae-plugin-recipe-daddy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.19
4
+ version: 0.1.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - ichy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-02-23 00:00:00.000000000 Z
11
+ date: 2021-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: itamae
@@ -58,6 +58,20 @@ dependencies:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
60
  version: '0.1'
61
+ - !ruby/object:Gem::Dependency
62
+ name: itamae-plugin-resource-pip
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '1.1'
68
+ type: :runtime
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '1.1'
61
75
  - !ruby/object:Gem::Dependency
62
76
  name: bundler
63
77
  requirement: !ruby/object:Gem::Requirement
@@ -114,10 +128,10 @@ files:
114
128
  - lib/itamae/plugin/recipe/daddy/nginx.rb
115
129
  - lib/itamae/plugin/recipe/daddy/nginx/install.rb
116
130
  - lib/itamae/plugin/recipe/daddy/nginx/modules/nginx-rtmp-module.rb
117
- - lib/itamae/plugin/recipe/daddy/nginx/modules/passenger.rb
118
131
  - lib/itamae/plugin/recipe/daddy/nginx/nginx-1.13.12_sha256sum.txt
119
132
  - lib/itamae/plugin/recipe/daddy/nginx/nginx-1.14.2_sha256sum.txt
120
133
  - lib/itamae/plugin/recipe/daddy/nginx/nginx-1.16.1_sha256sum.txt
134
+ - lib/itamae/plugin/recipe/daddy/nginx/nginx-1.18.0_sha256sum.txt
121
135
  - lib/itamae/plugin/recipe/daddy/nginx/start.rb
122
136
  - lib/itamae/plugin/recipe/daddy/nginx/stop.rb
123
137
  - lib/itamae/plugin/recipe/daddy/nginx/templates/etc/nginx/conf.d/default.conf.erb
@@ -1,14 +0,0 @@
1
- version = ENV['PASSENGER_VERSION'] || ItamaePluginRecipeDaddy::PASSENGER_VERSION
2
- nginx_version = ENV['NGINX_VERSION'] || ItamaePluginRecipeDaddy::NGINX_VERSION
3
-
4
- gem_package 'passenger' do
5
- user 'root'
6
- version version
7
- options ['--verbose'] # to avoid read timeout error on docker
8
- end
9
-
10
- execute "rm -Rf /opt/nginx/nginx-#{nginx_version}" do
11
- user 'root'
12
- subscribes :run, 'gem_package[passenger]'
13
- action :nothing
14
- end