itamae-plugin-recipe-selenium 0.3.1 → 0.3.2
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: f3267094a101e501e8cceee548b0248d7d5e69ffa73470ca9ae808456579c63a
|
4
|
+
data.tar.gz: 171240b3c1c6ec4cbadb7e924d70cbd8f6611df9d16b2c97d1cb2f447cfa3af3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b64d882fb00e7840358be1249a36f70e2e054a98756fbb6a1f9baf7681afb4f2da552b205a116d24e4a990b7928118a9a0df11b54b980704832f50db2d1e1c88
|
7
|
+
data.tar.gz: c325398edaafc49117e38aece5f906e14e6ddc65fff1297688e3c6bee33328d7e5d8b3fde5820f4ac50b15ce77654f35cdb3bad98838eb05bc06e9eb7f8214dd
|
@@ -1,4 +1,4 @@
|
|
1
|
-
version = ENV['CHROME_VERSION']
|
1
|
+
version = ENV['CHROME_VERSION']
|
2
2
|
|
3
3
|
template '/etc/yum.repos.d/google-chrome.repo' do
|
4
4
|
user 'root'
|
@@ -7,12 +7,18 @@ template '/etc/yum.repos.d/google-chrome.repo' do
|
|
7
7
|
mode '644'
|
8
8
|
end
|
9
9
|
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
if ENV['CHROME_VERSION'].to_s.empty?
|
11
|
+
package 'google-chrome-stable' do
|
12
|
+
user 'root'
|
13
|
+
end
|
14
|
+
else
|
15
|
+
execute "yum install -y https://dl.google.com/linux/chrome/rpm/stable/x86_64/google-chrome-stable-#{ENV['CHROME_VERSION']}-1.x86_64.rpm" do
|
16
|
+
user 'root'
|
17
|
+
not_if "which google-chrome-stable && google-chrome-stable --version | cut -d ' ' -f 3 | egrep \"^#{ENV['CHROME_VERSION']}$\""
|
18
|
+
end
|
13
19
|
end
|
14
20
|
|
15
21
|
execute 'yum update -y google-chrome-stable' do
|
16
22
|
user 'root'
|
17
|
-
not_if "which google-chrome-stable && google-chrome-stable --version | egrep 'Google Chrome (
|
23
|
+
not_if "which google-chrome-stable && google-chrome-stable --version | egrep 'Google Chrome (91|92|93|94|96)\.'"
|
18
24
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: itamae-plugin-recipe-selenium
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- y-matsuda
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: itamae
|
@@ -115,7 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
115
115
|
- !ruby/object:Gem::Version
|
116
116
|
version: '0'
|
117
117
|
requirements: []
|
118
|
-
rubygems_version: 3.
|
118
|
+
rubygems_version: 3.1.4
|
119
119
|
signing_key:
|
120
120
|
specification_version: 4
|
121
121
|
summary: itamae recipe for god process monitoring framework
|