daddy 0.9.6 → 0.9.7

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: 209f38558ce3f3bbe0b82db310e13e2046003fec45a745bcd90a47b219f40539
4
- data.tar.gz: c50cd3f0ea11e025f99b246d35bb474ca74fb06837371e5eab534408a050477e
3
+ metadata.gz: 843d1f8c36f53d4bf57dbe550f473830a8a0d5b5c0bb633f5c03dd1108819a46
4
+ data.tar.gz: 5ab2d651823ef638689b29ead92f5b82a983c08b7cb1cc4dfd114dae6681b256
5
5
  SHA512:
6
- metadata.gz: e38f244a879333499d2cf194bfc1374cd7057eeb11bcf9ee7b52efefddd9bd2845da94b7bdd29ba22bdaf33984d2bef7292a2e0d13b2cd550f1c5547ab578a90
7
- data.tar.gz: 586a98c9f04e097749e0590d0f37b3558592e4d6fc53e6572d172df612cbf40f0eea1503bda54151435ae1e2268fc387b3393b35c328bd83aa8b51a232d31650
6
+ metadata.gz: 512884706d3897482b8a6edb93f528ad2f359f8655c1b1bfd2d33fad09bd9bc326a77df7026e1ba8ac80cf32a6fa7c4530eca4427f414170d8d938b38c23ef9c
7
+ data.tar.gz: 4473aa2d2fa6ae59302ac706ead914f80518bcb6a1d0d89eb089a6072c8ad909a1e1fb225e34e85bbb443c2f8009c30a824dff40743540aac08777b5c2d9ee7d
@@ -1,5 +1,4 @@
1
1
  %w{
2
- ImageMagick-devel
3
2
  autoconf
4
3
  automake
5
4
  gcc
@@ -12,10 +11,8 @@
12
11
  libxml2-devel
13
12
  libxslt-devel
14
13
  libyaml-devel
15
- mariadb-devel
16
14
  openssl-devel
17
15
  readline-devel
18
- sqlite-devel
19
16
  sudo
20
17
  wget
21
18
  which
@@ -0,0 +1 @@
1
+ include_recipe 'daddy::mysql::install'
@@ -20,7 +20,7 @@ end
20
20
 
21
21
  package 'nodejs' do
22
22
  user 'root'
23
- version "16.16.0-1nodesource"
23
+ version "16.20.2-1nodesource"
24
24
  options '--enablerepo=nodesource'
25
25
  end
26
26
 
data/lib/daddy/version.rb CHANGED
@@ -2,6 +2,6 @@ module Daddy
2
2
  VERSION = [
3
3
  VERSION_MAJOR = '0',
4
4
  VERSION_MINOR = '9',
5
- VERSION_REVISION = '6'
5
+ VERSION_REVISION = '7'
6
6
  ].join('.')
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: daddy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.6
4
+ version: 0.9.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - ichy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-28 00:00:00.000000000 Z
11
+ date: 2024-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: docker-api
@@ -297,7 +297,6 @@ files:
297
297
  - itamae/cookbooks/jenkins/plugins/install.rb
298
298
  - itamae/cookbooks/kvm/install.rb
299
299
  - itamae/cookbooks/letsencrypt/install.rb
300
- - itamae/cookbooks/mongodb/install.rb
301
300
  - itamae/cookbooks/netdata/install.rb
302
301
  - itamae/cookbooks/netdata/netdata-installer.sh
303
302
  - itamae/cookbooks/nginx/config/gitbucket.rb
@@ -319,6 +318,7 @@ files:
319
318
  - itamae/environments/docker/default.rb
320
319
  - itamae/environments/docker/image.rb
321
320
  - itamae/environments/local.rb
321
+ - itamae/environments/mysql.rb
322
322
  - itamae/environments/nodejs/default.rb
323
323
  - itamae/environments/nodejs/templates/etc/pki/rpm-gpg/NODESOURCE-GPG-SIGNING-KEY-EL.erb
324
324
  - itamae/environments/nodejs/templates/etc/yum.repos.d/nodesource-el7.repo.erb
@@ -469,7 +469,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
469
469
  - !ruby/object:Gem::Version
470
470
  version: '0'
471
471
  requirements: []
472
- rubygems_version: 3.3.10
472
+ rubygems_version: 3.2.16
473
473
  signing_key:
474
474
  specification_version: 4
475
475
  summary: My rails dad
@@ -1,17 +0,0 @@
1
- require 'daddy/itamae'
2
-
3
- version = ENV['MONGO_VERSION'] || '3.6'
4
-
5
- template '/etc/yum.repos.d/mongodb-org.repo' do
6
- user 'root'
7
- variables :version => version
8
- end
9
-
10
- package 'mongodb-org' do
11
- user 'root'
12
- end
13
-
14
- service 'mongod' do
15
- user 'root'
16
- action ['enable', 'start']
17
- end