Explicitly state the owner, group and access parameters to the MariaDB configuration file during the server reset

This commit is contained in:
Andrey Vasilyev 2019-11-19 14:09:58 +03:00 committed by Johan Wikman
parent ed3548b825
commit cc52be8df2

View File

@ -1321,9 +1321,9 @@ void Mariadb_nodes::reset_server_settings(int node)
std::string cnf = get_config_name(node);
// Note: This is a CentOS specific path
ssh_node(node, "sudo rm -rf /etc/my.cnf.d/*", true);
ssh_node(node, "rm -rf /etc/my.cnf.d/*", true);
copy_to_node(node, (cnfdir + cnf).c_str(), "~/");
ssh_node_f(node, false, "sudo mv ~/%s /etc/my.cnf.d/", cnf.c_str());
ssh_node_f(node, false, "sudo install -o root -g root -m 0644 ~/%s /etc/my.cnf.d/", cnf.c_str());
}
void Mariadb_nodes::reset_server_settings()