itamae-plugin-recipe-selenium 0.3.9 → 0.4.0

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: deff148923fcb779d22094385b9db231562e7c172c8aa4c494123ba369460dbb
4
- data.tar.gz: 719e6ebcf77eecb704d6195e9086a8547d64f0b2a5faba63254264565d556ad1
3
+ metadata.gz: 1e0ed51d2ed85d10d47bde47d097d4d01adae56aaa5ad071e79b8e2bbf21bbfa
4
+ data.tar.gz: 4070d4793665cf51df9c5c4c97c84a04900709ee359b0f00bee62c8dc9ed61ab
5
5
  SHA512:
6
- metadata.gz: 62e3a267d68b3db345657757a507b4cd8ddae99ac591a868b34649d4debf706a945510431802068f45a0d01b07c2938a3a7da13ce5983430341f0c0d0a943eef
7
- data.tar.gz: 7e2eb04d5d301bc580eb8ba56ffb9e3e0222ca6b49bec00261089a59acd4d911b6c500a3cae736bcce5a0c6ebc1c59ba6c91c5ac9525c183f75c636466c87693
6
+ metadata.gz: bf8b735832402e847a701f0762d38c52a21b47d3a6c11e6adebc170775277224ec433f0669c2ba640a2841f8c523ddafb80429dd7995f6025a367d9026595df8
7
+ data.tar.gz: 65f7af5ec428d12156d78256cedee7f965d59ab3ff09c1f2861a9ef45b88d5195b4e3349cd2dc68ef98ccf355f6827814f1c185931cff6821687aea029f39b10
@@ -3,6 +3,7 @@ template '/etc/yum.repos.d/google-chrome.repo' do
3
3
  owner 'root'
4
4
  group 'root'
5
5
  mode '644'
6
+ variables disable_gpg_check: ['1', 'yes', 'true'].include?(ENV['CHROME_DISABLE_GPG_CHECK'].to_s.downcase)
6
7
  end
7
8
 
8
9
  if ENV['CHROME_VERSION'].to_s.empty?
@@ -18,5 +19,5 @@ end
18
19
 
19
20
  execute 'yum update -y google-chrome-stable' do
20
21
  user 'root'
21
- not_if "which google-chrome-stable && google-chrome-stable --version | egrep 'Google Chrome (110|111|112|113)\.'"
22
+ not_if "which google-chrome-stable && google-chrome-stable --version | egrep 'Google Chrome (110|111|112|113|114)\.'"
22
23
  end
@@ -2,5 +2,5 @@
2
2
  name=google-chrome
3
3
  baseurl=https://dl.google.com/linux/chrome/rpm/stable/x86_64
4
4
  enabled=1
5
- gpgcheck=1
5
+ gpgcheck=<%= @disable_gpg_check ? 0 : 1 %>
6
6
  gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
@@ -2,7 +2,7 @@ module Itamae
2
2
  module Plugin
3
3
  module Recipe
4
4
  module Selenium
5
- VERSION = '0.3.9'
5
+ VERSION = '0.4.0'
6
6
  end
7
7
  end
8
8
  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.9
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - y-matsuda
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-26 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: itamae