itamae-plugin-recipe-daddy 0.1.14 → 0.1.15

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: 97808540d4e2c62829aca4dc3940144ffd11830c8d934a9a390db7f4f37aee61
4
- data.tar.gz: 52b0d376dd277dba3b6c51d7829ae4d2e992298b38edee98ddc31f37f97c0a6e
3
+ metadata.gz: 2e95709ae761fbe287cdf54b9bb9cf8ad960b8aaac9d23acef81b20e01fd85a8
4
+ data.tar.gz: 408a9b08cc88177b7ee53429153921dca918ab1061f77cff9cdba57fc186bb5f
5
5
  SHA512:
6
- metadata.gz: 820466c35ba75f35d84376a36b7ee091c03591e22e8be3127950fe98a0eb82bc3004353499309dc32031482cb180a4fcad53a9cfecf47e9ac2eea60962fbd9fa
7
- data.tar.gz: 4c5f4c955db5f1858614e4b908bb970d860386e7154145951e576e98ad97ba83e4fe02a189657b4f95edd9cdb08d5f0ebf4087aaea074913648c99a32483d041
6
+ metadata.gz: 773086abb3848d46035f76d69cc25b8fc96a18dcf3c4e0bfae895c8f061a78e3a983ee65d9d2f0622cca54a50266f8695618eea50f603320cc7500c94d9a922b
7
+ data.tar.gz: 04bdb3a30a7003bea25d5d9542bc61a012a60125b2b151c4fbb70a6f93deed303fb8b38c1d87ef1019bdf8d2ef1e1ae285e726dd6478942dc1203a3c6281ef6b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- itamae-plugin-recipe-daddy (0.1.14)
4
+ itamae-plugin-recipe-daddy (0.1.15)
5
5
  itamae (~> 1.10, >= 1.10.2)
6
6
 
7
7
  GEM
@@ -22,7 +22,7 @@ GEM
22
22
  rake (12.3.2)
23
23
  schash (0.1.2)
24
24
  sfl (2.3)
25
- specinfra (2.77.2)
25
+ specinfra (2.78.0)
26
26
  net-scp
27
27
  net-ssh (>= 2.7)
28
28
  net-telnet (= 0.1.1)
@@ -50,9 +50,3 @@ end
50
50
  package 'expect' do
51
51
  user 'root'
52
52
  end
53
-
54
- execute 'mysql_secure_installation' do
55
- user 'root'
56
- command "bash #{File.join(File.dirname(__FILE__), 'mysql_secure_installation.sh')}"
57
- not_if "mysql -u root -e 'select 1;'"
58
- end
@@ -1,5 +1,5 @@
1
1
  module ItamaePluginRecipeDaddy
2
- VERSION = '0.1.14'
2
+ VERSION = '0.1.15'
3
3
 
4
4
  CHROME_DRIVER_VERSION = [
5
5
  CHROME_DRIVER_VERSION_MAJOR = '74',
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.14
4
+ version: 0.1.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - ichy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-05-22 00:00:00.000000000 Z
11
+ date: 2019-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: itamae
@@ -82,7 +82,6 @@ files:
82
82
  - lib/itamae/plugin/recipe/daddy/memcached/install.rb
83
83
  - lib/itamae/plugin/recipe/daddy/mysql.rb
84
84
  - lib/itamae/plugin/recipe/daddy/mysql/install.rb
85
- - lib/itamae/plugin/recipe/daddy/mysql/mysql_secure_installation.sh
86
85
  - lib/itamae/plugin/recipe/daddy/mysql/templates/daddy.cnf.erb
87
86
  - lib/itamae/plugin/recipe/daddy/mysql/templates/my.cnf.erb
88
87
  - lib/itamae/plugin/recipe/daddy/nginx.rb
@@ -1,26 +0,0 @@
1
- #!/bin/bash
2
-
3
- expect -c "
4
- set timeout 5
5
- spawn mysql_secure_installation
6
-
7
- expect \"Enter current password for root\"
8
- send \"\n\"
9
-
10
- expect \"Set root password?\"
11
- send \"n\n\"
12
-
13
- expect \"Remove anonymous users?\"
14
- send \"y\n\"
15
-
16
- expect \"Disallow root login remotely?\"
17
- send \"y\n\"
18
-
19
- expect \"Remove test database and access to it?\"
20
- send \"y\n\"
21
-
22
- expect \"Reload privilege tables now?\"
23
- send \"y\n\"
24
-
25
- interact
26
- "