mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Prevent deletion of 'config_local.py' for RPM and Debian
This commit is contained in:
parent
b79b2b1265
commit
96450fee63
@ -2,7 +2,7 @@
|
|||||||
Version 7.0
|
Version 7.0
|
||||||
***********
|
***********
|
||||||
|
|
||||||
Release date: 2023-04-06
|
Release date: 2023-04-11
|
||||||
|
|
||||||
This release contains a number of bug fixes and new features since the release of pgAdmin 4 v6.21.
|
This release contains a number of bug fixes and new features since the release of pgAdmin 4 v6.21.
|
||||||
|
|
||||||
@ -67,3 +67,4 @@ Bug fixes
|
|||||||
| `Issue #5958 <https://github.com/pgadmin-org/pgadmin4/issues/5958>`_ - Fix an issue where new dashboard graphs are partially following theme colors.
|
| `Issue #5958 <https://github.com/pgadmin-org/pgadmin4/issues/5958>`_ - Fix an issue where new dashboard graphs are partially following theme colors.
|
||||||
| `Issue #5959 <https://github.com/pgadmin-org/pgadmin4/issues/5959>`_ - Fix an issue where Backup, Restore, and Maintenance not working if connection timeout is set in the server dialog.
|
| `Issue #5959 <https://github.com/pgadmin-org/pgadmin4/issues/5959>`_ - Fix an issue where Backup, Restore, and Maintenance not working if connection timeout is set in the server dialog.
|
||||||
| `Issue #6018 <https://github.com/pgadmin-org/pgadmin4/issues/6018>`_ - Change the foreground color of the code mirror text for Dark Theme.
|
| `Issue #6018 <https://github.com/pgadmin-org/pgadmin4/issues/6018>`_ - Change the foreground color of the code mirror text for Dark Theme.
|
||||||
|
| `Issue #6100 <https://github.com/pgadmin-org/pgadmin4/issues/6100>`_ - Fixed the LDAP authentication issue for the simultaneous login attempts.(CVE-2023-1907)
|
||||||
|
@ -36,7 +36,9 @@ cat << EOF > "${SERVERROOT}/DEBIAN/preinst"
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
rm -rf /usr/pgadmin4/venv
|
rm -rf /usr/pgadmin4/venv
|
||||||
rm -rf /usr/pgadmin4/web
|
if [ -d /usr/pgadmin4/web ]; then
|
||||||
|
cd /usr/pgadmin4/web && rm -rf $(ls -A -I config_local.py)
|
||||||
|
fi
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
chmod 755 "${SERVERROOT}/DEBIAN/preinst"
|
chmod 755 "${SERVERROOT}/DEBIAN/preinst"
|
||||||
|
@ -69,7 +69,9 @@ The core server package for pgAdmin. pgAdmin is the most popular and feature ric
|
|||||||
|
|
||||||
%pre
|
%pre
|
||||||
rm -rf /usr/pgadmin4/venv
|
rm -rf /usr/pgadmin4/venv
|
||||||
rm -rf /usr/pgadmin4/web
|
if [ -d /usr/pgadmin4/web ]; then
|
||||||
|
cd /usr/pgadmin4/web && rm -rf $(ls -A -I config_local.py)
|
||||||
|
fi
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user