Fix: install script permission
All checks were successful
Build package / build-package (push) Successful in 7s

This commit is contained in:
2025-07-28 11:02:39 +08:00
parent 2e9756af2e
commit c25cc7d783
2 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ install_override() {
if [[ -e "$dest" ]]; then
mv "$dest" "$dest.pacsave"
fi
install -D "$src" "$dest"
install -Dm$(stat -c %a "$src") "$src" "$dest"
}
install_override "$pkglib/ldap.conf" '/etc/openldap/ldap.conf'