Skip to content

Commit 0967518

Browse files
committed
Merge pull request #1045 from puppetlabs/release
release 5.2.0 mergeback
2 parents 760e859 + 6871a9f commit 0967518

File tree

4 files changed

+29
-9
lines changed

4 files changed

+29
-9
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](http://semver.org).
55

6+
## Supported Release [5.2.0]
7+
8+
### Added
9+
- Compatibility for puppet-staging 3.0.0
10+
11+
### Fixed
12+
- Centralize all mysql command calls for providers
13+
- Add paths to `mysql_datadir` provider for RedHat Software Collections
14+
615
## Supported Release [5.1.0]
716
### Summary
817
This release adds Tasks to the Mysql module.
@@ -843,5 +852,6 @@ configuration variables.
843852
## 2011-06-03 - Dan Bode <[email protected]> - 0.0.1
844853
* initial commit
845854

855+
[5.2.0]:https://github.com/puppetlabs/puppetlabs-mysql/compare/5.1.0...5.2.0
846856
[5.1.0]:https://github.com/puppetlabs/puppetlabs-mysql/compare/5.0.0...5.1.0
847857
[5.0.0]:https://github.com/puppetlabs/puppetlabs-mysql/compare/4.0.1...5.0.0

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1301,6 +1301,8 @@ Testing on other platforms has been minimal and cannot be guaranteed.
13011301

13021302
**Note:** The mysqlbackup.sh does not work and is not supported on MySQL 5.7 and greater.
13031303

1304+
Debian 9 compatibility has not been fully verified.
1305+
13041306
## Development
13051307

13061308
Puppet modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can't access the huge number of platforms and myriad of hardware, software, and deployment configurations that Puppet is intended to serve.

metadata.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-mysql",
3-
"version": "5.1.0",
3+
"version": "5.2.0",
44
"author": "Puppet Labs",
55
"summary": "Installs, configures, and manages the MySQL service.",
66
"license": "Apache-2.0",
@@ -56,7 +56,8 @@
5656
"operatingsystem": "Debian",
5757
"operatingsystemrelease": [
5858
"7",
59-
"8"
59+
"8",
60+
"9"
6061
]
6162
},
6263
{

readmes/README_ja_JP.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -332,21 +332,21 @@ MySQLモジュールおよびHieraを使用して、MySQL Communityサーバー
332332
Puppetで:
333333

334334
```puppet
335-
include ::mysql::server
335+
include ::mysql::server
336336
337-
create_resources(yumrepo, hiera('yumrepo', {}))
337+
create_resources(yumrepo, hiera('yumrepo', {}))
338338
339-
Yumrepo['repo.mysql.com'] -> Anchor['mysql::server::start']
340-
Yumrepo['repo.mysql.com'] -> Package['mysql_client']
339+
Yumrepo['repo.mysql.com'] -> Anchor['mysql::server::start']
340+
Yumrepo['repo.mysql.com'] -> Package['mysql_client']
341341
342-
create_resources(mysql::db, hiera('mysql::server::db', {}))
342+
create_resources(mysql::db, hiera('mysql::server::db', {}))
343343
```
344344

345345
Hieraで:
346346

347347
```yaml
348348
---
349-
# mysqlモジュールはMySQLを正しく導入するために、MariaDBの代わりに多くのパラメータのフィードを必要とします。
349+
350350
# Centos 7.3
351351
yumrepo:
352352
'repo.mysql.com':
@@ -1282,6 +1282,10 @@ mysql_plugin { 'auth_socket':
12821282

12831283
ノードのMACアドレスに基づいて、`server_id`として使用可能な一意なIDを作成します。ループバックインターフェイスしかないノードでは、このファクトは*常に*`0`を返します。これらのノードは外部に接続されていないため、これが衝突の原因になる可能性はありません。
12841284

1285+
### タスク
1286+
1287+
MySQLモジュールにはサンプルタスクがあり、ユーザはデータベースに対して任意のSQLを実行できます。[Puppet Enterpriseマニュアル](https://puppet.com/docs/pe/2017.3/orchestrator/running_tasks.html)または[Boltマニュアル](https://puppet.com/docs/bolt/latest/bolt.html)で、タスクを実行する方法に関する情報を参照してください。
1288+
12851289
## 制約事項
12861290

12871291
このモジュールは以下のプラットフォームでテストされています。
@@ -1297,6 +1301,8 @@ mysql_plugin { 'auth_socket':
12971301

12981302
**注意:** mysqlbackup.shは、MySQL 5.7以降では動作せず、サポートされていません。
12991303

1304+
Debian 9の互換性は完全には検証されていません。
1305+
13001306
## 開発
13011307

13021308
Puppet Forge上のPuppetモジュールはオープンプロジェクトであり、その価値を維持するにはコミュニティからの貢献が欠かせません。Puppetが提供する膨大な数のプラットフォームや、無数のハードウェア、ソフトウェア、デプロイ設定に弊社がアクセスすることは不可能です。
@@ -1319,4 +1325,5 @@ Puppet Forge上のPuppetモジュールはオープンプロジェクトであ
13191325
* Michael Arnold
13201326
* Chris Weyl
13211327
* Daniël van Eeden
1322-
* Jan-Otto Kröpke
1328+
* Jan-Otto Kröpke
1329+
* Timothy Sven Nelson

0 commit comments

Comments
 (0)