Skip to content

Commit 4fad939

Browse files
committed
service: fix ExecStart= for Red Hat Software Collections
Historically we used `pg_ctl` in ExecStart=, which we later wrapped into postgresql-ctl script - and later we moved to /bin/postmaster directly. The postgresql-ctl script had two purposes: (a) some additional/compat logic on top of pg_ctl and (b) it enabled the software collection by `scl_source`. When we moved to ExecStart=/bin/postmaster we realized that (a) is not needed anymore but we forgot about (b). Now we got report that server fails to load modules because it doesn't have LD_LIBRARY_PATH set accordingly in Software Collections scenario. Ideally, we would wrap %_bindir/postmaster by something like %_bindir/postmaster-scl. But this would mean that we'd have to request selinux-policy change, and wait till it gets updated. So instead of shell wrapper script, invoke /bin/sh directly. The /bin/sh is symlink to /bin/bash, which has shell_exec_t label; and SELinux policy allows shell_exec_t -> postgresql_exec_t -> postgresql_t transition. This started to be an issue after sd_notify switch, done in 925b34c. Related: rhbz#1550567, rhbz#1631185
1 parent bcf2360 commit 4fad939

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

NEWS

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ New in 8.3 version:
1010
postgresql-server(:MODULE_COMPAT_11) to avoid clash with non-modular
1111
builds.
1212

13+
* Fixed ExecStart= statement in systemd's service files for Software
14+
Collections where we need to first do `source scl_source COLLECTION ;`
15+
before we execute postmaster.
16+
1317
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1418

1519
New in 8.2 version:

configure.ac

+6
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,9 @@ AC_ARG_WITH([scl],
148148
[AS_HELP_STRING([--with-scl],
149149
[Build against Software Collections RPM])],
150150
[scl_enabled_build=:])
151+
152+
SYSTEMD_EXECSTART='${bindir}/postmaster -D $${PGDATA}'
153+
151154
if $scl_enabled_build; then
152155
AC_MSG_CHECKING([which SCL to build against])
153156
SCL=`rpm --eval %scl`
@@ -158,6 +161,8 @@ if $scl_enabled_build; then
158161
SCL_SOURCE="source scl_source enable $SCL"
159162
AC_MSG_RESULT([$SCL])
160163

164+
SYSTEMD_EXECSTART="/bin/sh -c '\''source scl_source enable ${SCL} ; exec postmaster -D \$\${PGDATA}'\''"
165+
161166
# The variables below override the detected default here.
162167
test x = x"$NAME_SRV_PFX" && NAME_SRV_PFX=$SCL-
163168
test x = x"$NAME_PKG_PFX" && NAME_PKG_PFX=$SCL-
@@ -193,6 +198,7 @@ PGSETUP_SUBST_OPT([rpmmacrosdir], [],
193198

194199
_AX_TEXT_TPL_SUBST([SCL_SHELL_WRAPPER])
195200
_AX_TEXT_TPL_SUBST([SCL_SOURCE])
201+
_AX_TEXT_TPL_SUBST([SYSTEMD_EXECSTART])
196202

197203
NAME_BINARYBASE="$NAME_BIN_PFX""postgresql$NAME_BIN_SFX"
198204
NAME_PACKAGE="$NAME_PKG_PFX""postgresql$NAME_PKG_SFX"

postgresql.service.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ExecStartPre=@libexecdir@/postgresql-check-db-dir %N
3232
# Even though the $PGDATA variable is exported (postmaster would accept that)
3333
# use the -D option here so PGDATA content is printed by /bin/ps and by
3434
# 'systemctl status'.
35-
ExecStart=@bindir@/postmaster -D ${PGDATA}
35+
ExecStart=@SYSTEMD_EXECSTART@
3636
ExecReload=/bin/kill -HUP $MAINPID
3737
KillMode=mixed
3838
KillSignal=SIGINT

0 commit comments

Comments
 (0)