locomotivecms_steam 1.8.0.alpha1 → 1.8.0.alpha2

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: bbac080500edff48f27330a294f5bfe6ca8429aa3ceb3b432050dbab884dabd7
4
- data.tar.gz: 21abc53a533550a832797bf54431ded6a3fcb88493dd3266e5a943d80cf692ef
3
+ metadata.gz: 39e4a6bd91280f55333a8768a420af73e22c4331fb7a3bc3f4c51c31640cc0de
4
+ data.tar.gz: 1cc1dac9af9cc2b79950334ef6a722a658738d39083774ff6e2a124d4318f851
5
5
  SHA512:
6
- metadata.gz: 6c8164e4ccba652609c7238fc673ae349eea722cf908fc06829c937c920ba1e9eaa00fb54372abe71be01e51e247b2c363dcc23bf665461b613ca62556343cb5
7
- data.tar.gz: 90b452804c38f418adf630de59103e0b6fc53d49f0a97493b91b0d328c4e650aa172ac436c556bebdfa22b02a43012156cfc838604ab3740f827a44fd5f1099e
6
+ metadata.gz: d1f85e7b6980570962161221eba73ef55947ed964004a73192923c87a63f0628d9760f8f923902ebc8902b768408e37af504a64c172ef71f3506ae99743111b8
7
+ data.tar.gz: 3c1ad7cc6b9565f0edc7e3868854e01af4a891148ba5ff9f8f4e129cf76a41d2ee6bfea4b094dd239dd7a3b400e7e946086198c201049a43ca051310301356ab
@@ -0,0 +1,43 @@
1
+ name: Continuous integration
2
+
3
+ on: [push]
4
+
5
+ jobs:
6
+ ci_validation:
7
+ runs-on: ubuntu-latest
8
+
9
+ services:
10
+ mongo:
11
+ image: mongo:6.0.14
12
+ ports:
13
+ - 27017:27017
14
+ env:
15
+ MONGO_INITDB_DATABASE: steam_test_1_8_x
16
+ options: >-
17
+ --health-cmd "echo 'db.runCommand("ping").ok' | mongosh --quiet"
18
+ --health-interval 10s
19
+ --health-timeout 5s
20
+ --health-retries 5
21
+ --name mongo_container
22
+
23
+ steps:
24
+ - name: Checkout Repository
25
+ uses: actions/checkout@v3
26
+
27
+ - name: Install MongoDB tools
28
+ run: |
29
+ wget https://fastdl.mongodb.org/tools/db/mongodb-database-tools-ubuntu2204-x86_64-100.9.4.deb
30
+ sudo apt install ./mongodb-database-tools-ubuntu2204-x86_64-100.9.4.deb
31
+
32
+ - name: Setup Ruby
33
+ uses: ruby/setup-ruby@v1
34
+ with:
35
+ ruby-version: 3.1.4
36
+ bundler-cache: true
37
+ cache-version: 1
38
+
39
+ - name: Prepare the DB
40
+ run: bundle exec rake mongodb:test:seed
41
+
42
+ - name: Test
43
+ run: bundle exec rspec
data/Gemfile CHANGED
@@ -32,5 +32,5 @@ group :test do
32
32
 
33
33
  gem 'rack-test', '~> 2.1.0'
34
34
 
35
- gem 'coveralls', '~> 0.8.23', require: false
35
+ gem 'simplecov', '~> 0.22.0', require: false
36
36
  end
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- locomotivecms_steam (1.8.0.alpha1)
4
+ locomotivecms_steam (1.8.0.alpha2)
5
5
  RedCloth (~> 4.3.2)
6
6
  bcrypt (~> 3.1.11)
7
7
  chronic (~> 0.10.2)
8
8
  dragonfly (>= 1.2, < 1.5)
9
9
  duktape (~> 2.0.1.1)
10
10
  execjs (~> 2.9.1)
11
- httparty (~> 0.16.0)
11
+ httparty (~> 0.21.0)
12
12
  kramdown (~> 2.3.0)
13
13
  liquid (~> 4.0.4)
14
14
  locomotivecms_common (~> 0.6.0.alpha1)
@@ -17,7 +17,7 @@ PATH
17
17
  moneta (~> 1.6.0)
18
18
  morphine (~> 0.1.1)
19
19
  multi_json (~> 1.15.0)
20
- nokogiri (~> 1.14.2)
20
+ nokogiri (~> 1.15.6)
21
21
  pony (~> 1.12)
22
22
  rack-cache (>= 1.7, < 2)
23
23
  rack-rewrite (~> 1.5.1)
@@ -29,7 +29,7 @@ GEM
29
29
  remote: https://rubygems.org/
30
30
  specs:
31
31
  RedCloth (4.3.4)
32
- activesupport (7.1.3.2)
32
+ activesupport (7.1.3.4)
33
33
  base64
34
34
  bigdecimal
35
35
  concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -39,23 +39,17 @@ GEM
39
39
  minitest (>= 5.1)
40
40
  mutex_m
41
41
  tzinfo (~> 2.0)
42
- addressable (2.8.6)
43
- public_suffix (>= 2.0.2, < 6.0)
42
+ addressable (2.8.7)
43
+ public_suffix (>= 2.0.2, < 7.0)
44
44
  attr_extras (7.1.0)
45
45
  base64 (0.2.0)
46
46
  bcrypt (3.1.20)
47
- bigdecimal (3.1.7)
47
+ bigdecimal (3.1.8)
48
48
  bson (4.15.0)
49
49
  chronic (0.10.2)
50
50
  colorize (1.1.0)
51
51
  concurrent-ruby (1.2.3)
52
52
  connection_pool (2.4.1)
53
- coveralls (0.8.23)
54
- json (>= 1.8, < 3)
55
- simplecov (~> 0.16.1)
56
- term-ansicolor (~> 1.3)
57
- thor (>= 0.19.4, < 2.0)
58
- tins (~> 1.6)
59
53
  crass (1.0.6)
60
54
  date (3.3.4)
61
55
  diff-lcs (1.5.1)
@@ -72,8 +66,8 @@ GEM
72
66
  temple (>= 0.8.2)
73
67
  thor
74
68
  tilt
75
- httparty (0.16.4)
76
- mime-types (~> 3.0)
69
+ httparty (0.21.0)
70
+ mini_mime (>= 1.0.0)
77
71
  multi_xml (>= 0.5.2)
78
72
  i18n (1.14.4)
79
73
  concurrent-ruby (~> 1.0)
@@ -81,7 +75,6 @@ GEM
81
75
  iso
82
76
  iso (0.4.0)
83
77
  i18n
84
- json (2.7.1)
85
78
  json_spec (1.1.5)
86
79
  multi_json (~> 1.0)
87
80
  rspec (>= 2.0, < 4.0)
@@ -101,42 +94,43 @@ GEM
101
94
  memory_profiler (1.0.1)
102
95
  mime-types (3.5.2)
103
96
  mime-types-data (~> 3.2015)
104
- mime-types-data (3.2024.0305)
97
+ mime-types-data (3.2024.0604)
105
98
  mimetype-fu (0.1.2)
106
99
  mini_mime (1.1.5)
107
- mini_portile2 (2.8.5)
108
- minitest (5.22.3)
100
+ mini_portile2 (2.8.7)
101
+ minitest (5.24.0)
109
102
  moneta (1.6.0)
110
103
  mongo (2.18.3)
111
104
  bson (>= 4.14.1, < 5.0.0)
112
105
  morphine (0.1.1)
113
106
  multi_json (1.15.0)
114
- multi_xml (0.6.0)
107
+ multi_xml (0.7.1)
108
+ bigdecimal (~> 3.1)
115
109
  mutex_m (0.2.0)
116
- net-imap (0.4.10)
110
+ net-imap (0.4.14)
117
111
  date
118
112
  net-protocol
119
113
  net-pop (0.1.2)
120
114
  net-protocol
121
115
  net-protocol (0.2.2)
122
116
  timeout
123
- net-smtp (0.4.0.1)
117
+ net-smtp (0.5.0)
124
118
  net-protocol
125
- nio4r (2.7.0)
126
- nokogiri (1.14.5)
127
- mini_portile2 (~> 2.8.0)
119
+ nio4r (2.7.1)
120
+ nokogiri (1.15.6)
121
+ mini_portile2 (~> 2.8.2)
128
122
  racc (~> 1.4)
129
- nokogiri (1.14.5-x86_64-darwin)
123
+ nokogiri (1.15.6-x86_64-darwin)
130
124
  racc (~> 1.4)
131
125
  origin (2.3.1)
132
126
  pony (1.13.1)
133
127
  mail (>= 2.0)
134
- public_suffix (5.0.4)
128
+ public_suffix (6.0.0)
135
129
  puma (6.4.2)
136
130
  nio4r (~> 2.0)
137
- racc (1.7.3)
138
- rack (3.0.9.1)
139
- rack-cache (1.16.0)
131
+ racc (1.8.0)
132
+ rack (3.0.10)
133
+ rack-cache (1.17.0)
140
134
  rack (>= 0.4)
141
135
  rack-mini-profiler (0.10.7)
142
136
  rack (>= 1.2.0)
@@ -148,7 +142,8 @@ GEM
148
142
  rack_csrf (2.6.0)
149
143
  rack (>= 1.1.0)
150
144
  rake (13.1.0)
151
- rexml (3.2.6)
145
+ rexml (3.3.1)
146
+ strscan
152
147
  rspec (3.12.0)
153
148
  rspec-core (~> 3.12.0)
154
149
  rspec-expectations (~> 3.12.0)
@@ -165,23 +160,20 @@ GEM
165
160
  sanitize (6.0.2)
166
161
  crass (~> 1.0.2)
167
162
  nokogiri (>= 1.12.0)
168
- simplecov (0.16.1)
163
+ simplecov (0.22.0)
169
164
  docile (~> 1.1)
170
- json (>= 1.8, < 3)
171
- simplecov-html (~> 0.10.0)
172
- simplecov-html (0.10.2)
165
+ simplecov-html (~> 0.11)
166
+ simplecov_json_formatter (~> 0.1)
167
+ simplecov-html (0.12.3)
168
+ simplecov_json_formatter (0.1.4)
173
169
  stackprof (0.2.26)
174
170
  stringex (2.8.6)
175
- sync (0.5.0)
171
+ strscan (3.1.0)
176
172
  temple (0.10.3)
177
- term-ansicolor (1.7.2)
178
- tins (~> 1.0)
179
173
  thor (1.3.1)
180
174
  tilt (2.3.0)
181
175
  timecop (0.9.8)
182
176
  timeout (0.4.1)
183
- tins (1.32.1)
184
- sync
185
177
  tzinfo (2.0.6)
186
178
  concurrent-ruby (~> 1.0)
187
179
 
@@ -190,7 +182,6 @@ PLATFORMS
190
182
  x86_64-darwin-22
191
183
 
192
184
  DEPENDENCIES
193
- coveralls (~> 0.8.23)
194
185
  flamegraph
195
186
  haml (~> 6.2.3)
196
187
  i18n-spec (~> 0.6.0)
@@ -205,6 +196,7 @@ DEPENDENCIES
205
196
  rack-test (~> 2.1.0)
206
197
  rake
207
198
  rspec (~> 3.12.0)
199
+ simplecov (~> 0.22.0)
208
200
  stackprof
209
201
  timecop (~> 0.9.1)
210
202
 
data/MIT-LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2023 NoCoffee
3
+ Copyright (c) 2010-2024 NoCoffee
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
  this software and associated documentation files (the "Software"), to deal in
data/README.md CHANGED
@@ -1,7 +1,5 @@
1
1
  # Steam
2
2
 
3
- [![Code Climate](https://codeclimate.com/github/locomotivecms/steam/badges/gpa.svg)](https://codeclimate.com/github/locomotivecms/steam) [![Build Status](https://travis-ci.com/locomotivecms/steam.svg?branch=master)](https://travis-ci.com/locomotivecms/steam) [![Coverage Status](https://coveralls.io/repos/locomotivecms/steam/badge.svg?branch=master)](https://coveralls.io/r/locomotivecms/steam?branch=master) [![Gitter](https://img.shields.io/badge/gitter-join%20chat%20%E2%86%92-brightgreen.svg)](https://gitter.im/locomotivecms/steam)
4
-
5
3
  The rendering stack used by both Wagon and Engine. It includes:
6
4
 
7
5
  - the rack stack to pages and already precompiled assets (through webpack, vite or other).
@@ -103,4 +101,4 @@ Note: you do not need to prefix with bundle exec as the docky-ruby image already
103
101
 
104
102
  ## License
105
103
 
106
- Copyright (c) 2023 NoCoffee. MIT Licensed, see MIT-LICENSE for details.
104
+ Copyright (c) 2010-2024 NoCoffee. MIT Licensed, see MIT-LICENSE for details.
data/Rakefile CHANGED
@@ -27,8 +27,10 @@ namespace :mongodb do
27
27
  `mv #{dump_path} #{db_path}`
28
28
  end
29
29
 
30
- `mongo steam_test_1_7_x --eval "db.dropDatabase()" #{host}`
31
- `mongorestore -d steam_test_1_7_x #{db_path} #{host}`
30
+ # NOTE: command to drop the database
31
+ # `mongo steam_test_1_8_x --eval "db.dropDatabase()" #{host}`
32
+
33
+ `mongorestore --drop -d steam_test_1_8_x #{db_path} #{host}`
32
34
 
33
35
  puts "Done! Update now the spec/support/helpers.rb file by setting the new id of the site returned by the mongodb_site_id method"
34
36
  end
@@ -19,7 +19,7 @@ module Locomotive::Steam
19
19
  end
20
20
 
21
21
  def _load(path, frontmatter = false, strict = false, &block)
22
- if File.exists?(path)
22
+ if File.exist?(path)
23
23
  yaml = File.open(path).read.force_encoding('utf-8')
24
24
  template = nil
25
25
 
@@ -72,7 +72,7 @@ module Locomotive::Steam
72
72
  end
73
73
 
74
74
  def safe_json_file_load(path)
75
- return {} unless File.exists?(path)
75
+ return {} unless File.exist?(path)
76
76
 
77
77
  json = File.read(path)
78
78
 
@@ -70,7 +70,7 @@ module Locomotive
70
70
 
71
71
  _path = File.join(site_path, 'public', path)
72
72
 
73
- File.exists?(_path) ? File.size(_path) : nil
73
+ File.exist?(_path) ? File.size(_path) : nil
74
74
  end
75
75
 
76
76
  def modify_for_associations(attributes)
@@ -114,7 +114,7 @@ module Locomotive
114
114
 
115
115
  path = File.join(site_path, 'data', env.to_s, 'content_entries')
116
116
 
117
- @path = File.exists?(path) ? path : File.join(site_path, 'data') # allow the legacy folder
117
+ @path = File.exist?(path) ? path : File.join(site_path, 'data') # allow the legacy folder
118
118
  end
119
119
 
120
120
  def content_type
@@ -33,7 +33,7 @@ module Locomotive
33
33
  convert = ENV['IMAGE_MAGICK_CONVERT'] || `which convert`.strip.presence || '/usr/local/bin/convert'
34
34
  identify = ENV['IMAGE_MAGICK_IDENTIFY'] || `which identify`.strip.presence || '/usr/local/bin/identify'
35
35
 
36
- if File.exists?(convert)
36
+ if File.exist?(convert)
37
37
  { convert_command: convert, identify_command: identify }
38
38
  else
39
39
  missing_image_magick
@@ -29,7 +29,7 @@ module Locomotive
29
29
  handle = @context[@handle] || @handle
30
30
 
31
31
  # is external url?
32
- if handle =~ Locomotive::Steam::IsHTTP
32
+ if handle.is_a?(String) && handle =~ Locomotive::Steam::IsHTTP
33
33
  handle
34
34
  elsif page = self.retrieve_page_drop_from_handle(handle) # return a drop or model?
35
35
  # make sure we've got the page/content entry (if templatized)
@@ -3,6 +3,6 @@
3
3
  # 1.0.0.alpha < 1.0.0.alpha1 < 1.0.0.beta < 1.0.0.beta2 < 1.0.0.beta11 < 1.0.0.rc1 < 1.0.0
4
4
  module Locomotive
5
5
  module Steam
6
- VERSION = '1.8.0.alpha1'
6
+ VERSION = '1.8.0.alpha2'
7
7
  end
8
8
  end
@@ -18,10 +18,10 @@ Gem::Specification.new do |spec|
18
18
  spec.add_development_dependency 'mongo', '~> 2.18.2'
19
19
  spec.add_development_dependency 'origin', '~> 2.3.1'
20
20
 
21
- spec.add_dependency 'nokogiri', '~> 1.14.2'
21
+ spec.add_dependency 'nokogiri', '~> 1.15.6'
22
22
  spec.add_dependency 'sanitize', '~> 6.0.1'
23
23
  spec.add_dependency 'morphine', '~> 0.1.1'
24
- spec.add_dependency 'httparty', '~> 0.16.0'
24
+ spec.add_dependency 'httparty', '~> 0.21.0'
25
25
  spec.add_dependency 'chronic', '~> 0.10.2'
26
26
  spec.add_dependency 'bcrypt', '~> 3.1.11'
27
27
  spec.add_dependency 'multi_json', '~> 1.15.0'
@@ -43,7 +43,8 @@ describe Locomotive::Steam::MongoDBAdapter do
43
43
  end
44
44
 
45
45
  def current_connections
46
- `mongosh --eval "db.serverStatus().connections.current"`.split("\n").last.to_i
46
+ stats = JSON.parse(`mongostat --noheaders -n 1 --json`)
47
+ stats.dig('localhost', 'conn')&.to_i
47
48
  end
48
49
 
49
50
  end
data/spec/spec_helper.rb CHANGED
@@ -1,12 +1,4 @@
1
- # require 'simplecov'
2
- # require 'codeclimate-test-reporter'
3
- # require 'coveralls'
4
- # require 'simplecov'
5
- # require 'coveralls'
6
-
7
1
  require 'simplecov'
8
- require 'coveralls'
9
-
10
2
 
11
3
  SimpleCov.start do
12
4
  # formatter SimpleCov::Formatter::MultiFormatter.new([
@@ -4,7 +4,7 @@ module Spec
4
4
  module Helpers
5
5
 
6
6
  def mongodb_database
7
- 'steam_test_1_7_x'
7
+ 'steam_test_1_8_x'
8
8
  end
9
9
 
10
10
  def mongodb_site_id
@@ -17,7 +17,7 @@ describe Locomotive::Steam::Initializers::Dragonfly do
17
17
 
18
18
  before do
19
19
  ::Dragonfly::App.destroy_apps
20
- expect(File).to receive(:exists?).and_return(false)
20
+ expect(File).to receive(:exist?).and_return(false)
21
21
  initializer.run
22
22
  end
23
23
  it { is_expected.to eq nil }
@@ -55,11 +55,11 @@ describe Locomotive::Steam::Middlewares::Cache do
55
55
 
56
56
  let(:response) { nil }
57
57
 
58
- before { expect(cache).to receive(:read).with('7f3fe1e49370f63970331ec3194d4590').and_return(response) }
58
+ before { expect(cache).to receive(:read).with('f5f2eb8af560507da49fbe5df8220030').and_return(response) }
59
59
 
60
60
  context 'the cache is empty' do
61
61
 
62
- before { expect(cache).to receive(:write).with('7f3fe1e49370f63970331ec3194d4590', Marshal.dump([200, {}, ["Hello world!"]])) }
62
+ before { expect(cache).to receive(:write).with('f5f2eb8af560507da49fbe5df8220030', Marshal.dump([200, {}, ["Hello world!"]])) }
63
63
 
64
64
  it 'tells the CDN to cache the page and also cache it internally' do
65
65
  is_expected.to eq ['max-age=0, s-maxage=3600, public, must-revalidate', 'Accept-Language']
@@ -69,7 +69,7 @@ describe Locomotive::Steam::Middlewares::Cache do
69
69
 
70
70
  subject { send_request[:env]['steam.cache_etag'] }
71
71
 
72
- it { is_expected.to eq '7f3fe1e49370f63970331ec3194d4590' }
72
+ it { is_expected.to eq 'f5f2eb8af560507da49fbe5df8220030' }
73
73
 
74
74
  end
75
75
 
@@ -104,7 +104,7 @@ describe Locomotive::Steam::Middlewares::Cache do
104
104
 
105
105
  context 'based on the ETag' do
106
106
 
107
- let(:etag) { '7f3fe1e49370f63970331ec3194d4590' }
107
+ let(:etag) { 'f5f2eb8af560507da49fbe5df8220030' }
108
108
 
109
109
  it 'returns a 304 (Not modified) without no cache headers' do
110
110
  expect(subject.first).to eq 304
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: locomotivecms_steam
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0.alpha1
4
+ version: 1.8.0.alpha2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Didier Lafforgue
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2024-03-22 00:00:00.000000000 Z
14
+ date: 2024-06-25 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: mongo
@@ -47,14 +47,14 @@ dependencies:
47
47
  requirements:
48
48
  - - "~>"
49
49
  - !ruby/object:Gem::Version
50
- version: 1.14.2
50
+ version: 1.15.6
51
51
  type: :runtime
52
52
  prerelease: false
53
53
  version_requirements: !ruby/object:Gem::Requirement
54
54
  requirements:
55
55
  - - "~>"
56
56
  - !ruby/object:Gem::Version
57
- version: 1.14.2
57
+ version: 1.15.6
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: sanitize
60
60
  requirement: !ruby/object:Gem::Requirement
@@ -89,14 +89,14 @@ dependencies:
89
89
  requirements:
90
90
  - - "~>"
91
91
  - !ruby/object:Gem::Version
92
- version: 0.16.0
92
+ version: 0.21.0
93
93
  type: :runtime
94
94
  prerelease: false
95
95
  version_requirements: !ruby/object:Gem::Requirement
96
96
  requirements:
97
97
  - - "~>"
98
98
  - !ruby/object:Gem::Version
99
- version: 0.16.0
99
+ version: 0.21.0
100
100
  - !ruby/object:Gem::Dependency
101
101
  name: chronic
102
102
  requirement: !ruby/object:Gem::Requirement
@@ -373,8 +373,8 @@ executables:
373
373
  extensions: []
374
374
  extra_rdoc_files: []
375
375
  files:
376
+ - ".github/workflows/continuous_integration.yml"
376
377
  - ".gitignore"
377
- - ".travis.yml"
378
378
  - Gemfile
379
379
  - Gemfile.lock
380
380
  - MIT-LICENSE
@@ -599,7 +599,6 @@ files:
599
599
  - lib/locomotive/steam/services/url_finder_service.rb
600
600
  - lib/locomotive/steam/version.rb
601
601
  - locomotivecms_steam.gemspec
602
- - script/ci/before_build.sh
603
602
  - spec/fixtures/default/README
604
603
  - spec/fixtures/default/app/content_types/accounts.yml
605
604
  - spec/fixtures/default/app/content_types/bands.yml
@@ -912,7 +911,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
912
911
  - !ruby/object:Gem::Version
913
912
  version: '0'
914
913
  requirements: []
915
- rubygems_version: 3.5.4
914
+ rubygems_version: 3.5.7
916
915
  signing_key:
917
916
  specification_version: 4
918
917
  summary: The LocomotiveCMS Steam is the rendering stack used by both Wagon and Engine
data/.travis.yml DELETED
@@ -1,10 +0,0 @@
1
- language: ruby
2
- services: mongodb
3
- before_script: ./script/ci/before_build.sh
4
- rvm:
5
- - 2.7.7
6
- - 3.0.5
7
- - 3.1.3
8
- addons:
9
- code_climate:
10
- repo_token: 3fa74f2ade25037fccd7261090acbdeae232639c3a83aafb80ee428ec16b8cf9
@@ -1,5 +0,0 @@
1
- #!/bin/sh
2
- echo 'America/Chicago' | sudo tee /etc/timezone
3
- sudo dpkg-reconfigure --frontend noninteractive tzdata
4
- date
5
- mongo --version