8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 21:23:04 +01:00

Fixed CORE-5724: Add ability to use "install.sh -path /opt/my_path" without need to install FB first in the default folder ("/opt/firebird")

This commit is contained in:
AlexPeshkoff 2018-12-26 17:19:10 +03:00
parent f8c803ab32
commit 134abffbb1

View File

@ -183,7 +183,15 @@ superSrv() {
registerSuperServer() {
installSystemdCtrlFiles
superSrv enable && return 0
if [ "${fb_install_prefix}" = "${default_prefix}" ]
then
superSrv enable && return 0
return 1
fi
systemdPresent && return 0
return 1
}
unregisterSuperServer() {