diff --git a/manifests/db/mysql/host_access.pp b/manifests/db/mysql/host_access.pp index 9c490113..40cbdbe8 100644 --- a/manifests/db/mysql/host_access.pp +++ b/manifests/db/mysql/host_access.pp @@ -49,8 +49,8 @@ define openstacklib::db::mysql::host_access ( password_hash => $password_hash, tls_options => $tls_options, } - Mysql_database<| title == $database |> ~> - Mysql_user<| title == "${user}@${host}" |> + Mysql_database<| title == $database |> + ~> Mysql_user<| title == "${user}@${host}" |> } if $create_grant { @@ -59,7 +59,7 @@ define openstacklib::db::mysql::host_access ( table => "${database}.*", user => "${user}@${host}", } - Mysql_user<| title == "${user}@${host}" |> ~> - Mysql_grant<| title == "${user}@${host}/${database}.*" |> + Mysql_user<| title == "${user}@${host}" |> + ~> Mysql_grant<| title == "${user}@${host}/${database}.*" |> } } diff --git a/manifests/policy/base.pp b/manifests/policy/base.pp index b49ececf..8e7a6acc 100644 --- a/manifests/policy/base.pp +++ b/manifests/policy/base.pp @@ -40,8 +40,8 @@ define openstacklib::policy::base ( changes => "set dict/entry[*][.=\"${key}\"]/string \"${value}\"", } - Augeas<| title == "${file_path}-${key}-${value}-add" |> ~> - Augeas<| title == "${file_path}-${key}-${value}" |> + Augeas<| title == "${file_path}-${key}-${value}-add" |> + ~> Augeas<| title == "${file_path}-${key}-${value}" |> } diff --git a/manifests/service_validation.pp b/manifests/service_validation.pp index 81fce60a..39f0fa6e 100644 --- a/manifests/service_validation.pp +++ b/manifests/service_validation.pp @@ -91,8 +91,8 @@ define openstacklib::service_validation( logoutput => 'on_failure', } - anchor { "create ${service_name} anchor": } -> - Exec<| title == "execute ${service_name} validation" |> + anchor { "create ${service_name} anchor": } + -> Exec<| title == "execute ${service_name} validation" |> }