Skip to content

Commit

Permalink
sidecar: fix radondb#770 change owener of plugin and xtraconf (radond…
Browse files Browse the repository at this point in the history
  • Loading branch information
zhl003 committed Mar 24, 2023
1 parent dd82c2f commit 513d57f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions sidecar/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -283,12 +283,21 @@ func RunRequestBackup(cfg *Config, host string) error {

// Save plugin.cnf and extra.cnf to specified path.
func saveCnfTo(targetPath string, extraCnf *ini.File) error {
userId := 1001
groupId := 1001
if err := copyFile(path.Join(mysqlCMPath, utils.PluginConfigs), path.Join(targetPath, utils.PluginConfigs)); err != nil {
return fmt.Errorf("failed to copy plugin.cnf: %s", err)
}
if err := os.Chown(path.Join(targetPath, utils.PluginConfigs), userId, groupId); err != nil {
return fmt.Errorf("failed to change owner of plugin.cnf: %s", err)
}
if err := extraCnf.SaveTo(path.Join(targetPath, "extra.cnf")); err != nil {
return fmt.Errorf("failed to save extra.cnf: %s", err)
}
if err := os.Chown(path.Join(targetPath, "extra.cnf"), userId, groupId); err != nil {
return fmt.Errorf("failed to change owner of plugin.cnf: %s", err)
}

return nil
}

Expand Down

0 comments on commit 513d57f

Please sign in to comment.