Skip to content

Commit

Permalink
Merge pull request #86 from mariux64/fix-postgres-problem
Browse files Browse the repository at this point in the history
Fix postgres problem
  • Loading branch information
pmenzel authored May 3, 2019
2 parents dc8ff9c + bf9d2f2 commit f85e6ad
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
7 changes: 5 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ install_exec nfsdtop/nfsdtop "$DESTDIR$usr_sbindir/n
install_data serial-log/serial-log\@.service "$DESTDIR$systemdunitdir/serial-log@.service"
install_exec serial-log/serial-log "$DESTDIR$usr_exec_prefix/libexec/serial-log"
install_data misc_systemd_units/nfsd.service "$DESTDIR$systemdunitdir/nfsd.service"
mkdir -p $DESTDIR$systemdunitdir/user@.service.d
mkdir -p "$DESTDIR$systemdunitdir/user@.service.d"
install_data misc_systemd_units/user@.service.d/depend-on-remote-homes.conf \
"$DESTDIR$systemdunitdir/user@.service.d/depend-on-remote-homes.conf"
"$DESTDIR$systemdunitdir/user@.service.d/depend-on-remote-homes.conf"
mkdir -p "$DESTDIR$sysconfdir/systemd/logind.conf.d"
install_data misc_etc_files/systemd/logind.conf.d/disable_RemoveIPC.conf \
"$DESTDIR$sysconfdir/systemd/logind.conf.d/disable_RemoveIPC.conf"
exit
5 changes: 5 additions & 0 deletions misc_etc_files/systemd/logind.conf.d/disable_RemoveIPC.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[Login]
# Allow non sytem-users to run daemons which use System V semaphores
# and survive their session, e.g. postgreSQL
#
RemoveIPC=no

0 comments on commit f85e6ad

Please sign in to comment.