fix: 解决 sftpgo 安装失败的问题 (#1866)

pull/1870/head
zhengkunwang 1 year ago committed by GitHub
parent cd77c672bc
commit fb4a5491eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -542,11 +542,11 @@ func upAppPre(app model.App, appInstall *model.AppInstall) error {
fileOp := files.NewFileOp()
switch app.Key {
case "nexus":
return fileOp.Chown(dataPath, 200, 0)
return fileOp.ChownR(dataPath, "200", "0", true)
case "sftpgo":
return files.NewFileOp().Chown(dataPath, 1000, 1000)
return fileOp.ChownR(dataPath, "1000", "1000", true)
case "pgadmin4":
return files.NewFileOp().Chown(dataPath, 5050, 5050)
return fileOp.ChownR(dataPath, "5050", "5050", true)
}
return nil
}

Loading…
Cancel
Save