Move config install before package install
This prevents mysqld from running without its intended configuration.
This commit is contained in:
parent
1835ea8f25
commit
8b366fe7df
1 changed files with 2 additions and 2 deletions
|
@ -53,8 +53,8 @@ class mysql::server (
|
|||
|
||||
Class['mysql::server::root_password'] -> Mysql::Db <| |>
|
||||
|
||||
include '::mysql::server::install'
|
||||
include '::mysql::server::config'
|
||||
include '::mysql::server::install'
|
||||
include '::mysql::server::installdb'
|
||||
include '::mysql::server::service'
|
||||
include '::mysql::server::root_password'
|
||||
|
@ -75,8 +75,8 @@ class mysql::server (
|
|||
}
|
||||
|
||||
Anchor['mysql::server::start'] ->
|
||||
Class['mysql::server::install'] ->
|
||||
Class['mysql::server::config'] ->
|
||||
Class['mysql::server::install'] ->
|
||||
Class['mysql::server::installdb'] ->
|
||||
Class['mysql::server::service'] ->
|
||||
Class['mysql::server::root_password'] ->
|
||||
|
|
Loading…
Reference in a new issue