Explicitly state the owner, group and access parameters to the MariaDB configuration file during the server reset
This commit is contained in:
committed by
Johan Wikman
parent
ed3548b825
commit
cc52be8df2
@ -1321,9 +1321,9 @@ void Mariadb_nodes::reset_server_settings(int node)
|
|||||||
std::string cnf = get_config_name(node);
|
std::string cnf = get_config_name(node);
|
||||||
|
|
||||||
// Note: This is a CentOS specific path
|
// 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(), "~/");
|
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()
|
void Mariadb_nodes::reset_server_settings()
|
||||||
|
|||||||
Reference in New Issue
Block a user