Compare commits
10 Commits
fb31e4400c
...
fe76a6e0ab
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fe76a6e0ab | ||
|
|
3a8da4bb7c | ||
|
|
c3ff85e500 | ||
|
|
cbcd04a6f4 | ||
|
|
3b0debe092 | ||
|
|
b577106a7f | ||
|
|
8b61376708 | ||
|
|
461320b648 | ||
|
|
eabd5d6259 | ||
|
|
28eb1b84c4 |
@ -0,0 +1,25 @@
|
||||
diff --git a/builds/install/misc/firebird.conf.in b/builds/install/misc/firebird.conf.in
|
||||
index 05cd0c7..8c3d9ef 100644
|
||||
--- a/builds/install/misc/firebird.conf.in
|
||||
+++ b/builds/install/misc/firebird.conf.in
|
||||
@@ -406,10 +406,12 @@
|
||||
# Per-database configurable.
|
||||
#
|
||||
#AuthServer = Srp
|
||||
+AuthServer = Legacy_Auth
|
||||
#
|
||||
# Per-connection and per-database configurable.
|
||||
#
|
||||
#AuthClient = Srp, Win_Sspi, Legacy_Auth
|
||||
+AuthClient = Legacy_Auth
|
||||
#
|
||||
# If you need to use server plugins that do not provide encryption key (both Legacy_Auth
|
||||
# & Win_Sspi) you should also turn off required encryption on the wire with WireCrypt
|
||||
@@ -600,6 +602,7 @@
|
||||
# Type: string (predefined values)
|
||||
#
|
||||
#WireCrypt = Enabled (for client) / Required (for server)
|
||||
+WireCrypt = Disabled
|
||||
|
||||
#
|
||||
# Should connection over the wire be compressed?
|
||||
@ -1,20 +0,0 @@
|
||||
Differences between upstream and the Fedora package
|
||||
===================================================
|
||||
|
||||
* In /usr/bin you have isql-fb for Firebird isql.
|
||||
We can't name it isql to avoid conflict with isql from UNIX-ODBC.
|
||||
In /usr/bin you have also gstat-fb for Firebird gstat.
|
||||
We can't name it gstat to avoid conflict with gstat from Ganglia-gmond.
|
||||
|
||||
* By default, Firebird is set as superserver mode.
|
||||
Please read the Firebird doc if you want to change the mode.
|
||||
To help you, you have systemd units in /usr/share/firebird/misc.
|
||||
|
||||
* According to Fedora packaging rules, firebird service is not started
|
||||
automatically. You need to start it, as root :
|
||||
for SuperServer :
|
||||
systemctl start firebird-superserver.service
|
||||
If you want to have firebird started at each boot, as root :
|
||||
for SuperServer :
|
||||
systemctl enable firebird-superserver.service
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
Name: firebird
|
||||
Version: 3.0.3.32900
|
||||
Release: 4
|
||||
Release: 9
|
||||
Summary: SQL relational database management system
|
||||
License: Interbase
|
||||
License: Interbase-1.0
|
||||
URL: http://www.firebirdsql.org/
|
||||
|
||||
Source0: https://github.com/FirebirdSQL/firebird/releases/download/R3_0_3/Firebird-3.0.3.32900-0.tar.bz2
|
||||
@ -18,8 +18,9 @@ Patch0004: no-copy-from-icu.patch
|
||||
Patch0005: cloop-honour-build-flags.patch
|
||||
Patch0006: a4cb621bf55ef2101e22b1e7da5c458a1e0cc2ab.patch
|
||||
Patch0007: 0001-Port-to-RISC-V-64-bit-riscv64.patch
|
||||
Patch0008: Fix-connect-linking-to-web-database-by-modifying-the-default-conf.patch
|
||||
|
||||
BuildRequires: autoconf automake libtommath-devel libtool ncurses-devel libtermcap-devel libicu-devel
|
||||
BuildRequires: autoconf automake libtommath-devel libtool ncurses-devel libicu-devel
|
||||
BuildRequires: libedit-devel gcc-c++ libstdc++-static systemd-units chrpath zlib-devel procmail
|
||||
|
||||
Requires(post): systemd-units
|
||||
@ -113,7 +114,7 @@ cp .%{_datadir}/firebird/misc/firebird-superserver.service .%{_unitdir}/firebird
|
||||
%pre
|
||||
|
||||
getent group firebird || /usr/sbin/groupadd -r firebird
|
||||
getent passwd firebird >/dev/null || /usr/sbin/useradd -d / -g firebird -s /bin/nologin -r firebird
|
||||
getent passwd firebird >/dev/null || /usr/sbin/useradd -d / -g firebird -s /sbin/nologin -r firebird
|
||||
|
||||
|
||||
oldLine=$(grep "^gds_db" /etc/services)
|
||||
@ -184,6 +185,21 @@ systemd-tmpfiles --create %{_tmpfilesdir}/firebird.conf
|
||||
%exclude %{_docdir}/firebird/IPLicense.txt
|
||||
|
||||
%changelog
|
||||
* Mon Dec 2 2019 lihao <lihao129@huawei.com> - 3.0.3.32900-4
|
||||
* Mon Nov 22 2021 xu_ping <xuping33@huawei.com> - 3.0.3.32900-9
|
||||
- Fix connect linking to web database by modifying the firebird.conf items to make client and server compatible
|
||||
|
||||
* Tue Aug 03 2021 panchenbo <panchenbo@uniontech.com> - 3.0.3.32900-8
|
||||
- Fix login shell to /sbin/nologin
|
||||
|
||||
* Tue Aug 18 2020 senlin<xiasenlin1@huawei.com> - 3.0.3.32900-7
|
||||
- add release for update
|
||||
|
||||
* Mon Jan 13 2020 openEuler Buildteam <buildteam@openeuler.org> - 3.0.3.32900-6
|
||||
- Type:bugfix
|
||||
- Id:NA
|
||||
- SUG:NA
|
||||
- DESC:remove the libtermcap-devel in buildrequires
|
||||
|
||||
* Mon Dec 2 2019 lihao <lihao129@huawei.com> - 3.0.3.32900-5
|
||||
- Package Init
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user