itamae-plugin-recipe-daddy 0.2.0 → 0.2.1

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: 41c20b499d1cc91dd03bc824dbce5044e0b3da63d8e9c2d08f57d91fca4ce748
4
- data.tar.gz: 27e91486ccb1ed727e290c24064969cb4df50e4586d9f66118c7628d430c5524
3
+ metadata.gz: 9485d8e6091711bf2b2f98ab885568642dedc93cb0a7dee39193ce3ddaf198a5
4
+ data.tar.gz: 78e616759e043676c4e7a8c931e06e1160259a853c100a5c9143cfef0ae4ffde
5
5
  SHA512:
6
- metadata.gz: d2756b9081fbf03a1b80275fe5e52aadfa4357fac68917741b635adcc2a06f167137f2e9228da8db0bc801aeca82ae44a0f7da3718ed895dbb28eb0ebceb0110
7
- data.tar.gz: '078bc124bdbe1a82e638b6d07d1552b2467f0e960af8659a0bd7d592a7973de5abbf395b987ae7d1c5358584f16373dfa00c189b13d3b7a77a9eedd4051b7a56'
6
+ metadata.gz: 4aae2f01faeace7e544dcb81d3bbac08246db618ba0f06a638fd6041671a088bb5673510efc9cf350459dc9bfeb358095a4823fed21b2d0fa2c27cabf6f6d48b
7
+ data.tar.gz: 15b6f8b46002d6b9fd811828bba41c108b6552cbfbee4c1cb5d9b756f990830d99b6f74306cff924ce9f6defba912da2734f4e1780f81accb2b1abde8c2f06da
data/HISTORY.md ADDED
@@ -0,0 +1,13 @@
1
+ # HISTORY
2
+
3
+ ## v0.2.1 (unreleased)
4
+
5
+ - Run `restorecon` on `mysqld.service` after template on RHEL to fix SELinux issues
6
+
7
+ ## v0.2.0 (2026-05-12)
8
+
9
+ - Add AlmaLinux 9 support
10
+
11
+ ## v0.1.38 and earlier
12
+
13
+ See git log.
@@ -16,6 +16,12 @@ when /rhel-7\.(.*?)/, /rhel-8\.(.*?)/, /rhel-9\.(.*?)/
16
16
  mode '644'
17
17
  end
18
18
 
19
+ execute 'restorecon for mysqld.service unit' do
20
+ command 'restorecon -v /etc/systemd/system/mysqld.service'
21
+ user 'root'
22
+ only_if 'test -x /usr/sbin/restorecon'
23
+ end
24
+
19
25
  execute 'systemctl daemon-reload' do
20
26
  user 'root'
21
27
  subscribes :run, 'template[/etc/systemd/system/mysqld.service]', :immediately
@@ -1,5 +1,5 @@
1
1
  module ItamaePluginRecipeDaddy
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.1'
3
3
 
4
4
  NGINX_VERSION = [
5
5
  NGINX_VERSION_MAJOR = '1',
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itamae-plugin-recipe-daddy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ichy
@@ -95,6 +95,7 @@ files:
95
95
  - ".gitignore"
96
96
  - ".ruby-version"
97
97
  - Gemfile
98
+ - HISTORY.md
98
99
  - LICENSE.txt
99
100
  - README.md
100
101
  - Rakefile
@@ -167,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
167
168
  - !ruby/object:Gem::Version
168
169
  version: '0'
169
170
  requirements: []
170
- rubygems_version: 3.6.9
171
+ rubygems_version: 3.7.2
171
172
  specification_version: 4
172
173
  summary: itamae recipe collections
173
174
  test_files: []