Author: pierre Date: Thu Oct 1 22:59:59 2020 New Revision: 23774 Log: Fix changelog for the new dm management, and improve postgresql script
Modified: trunk/bootscripts/ChangeLog trunk/bootscripts/blfs/init.d/postgresql Modified: trunk/bootscripts/ChangeLog ============================================================================== --- trunk/bootscripts/ChangeLog Wed Sep 30 01:27:11 2020 (r23773) +++ trunk/bootscripts/ChangeLog Thu Oct 1 22:59:59 2020 (r23774) @@ -1,3 +1,12 @@ +2020-10-02 Pierre Labastie <[email protected]> + * Remove the -W (nowait) flag from posgresql start, and add -s + (silent) to both start and stop. +2020-09-20 Pierre Labastie <[email protected]> + * Start the display managers directly from inittab: + - add a new /etc/init.d/xdm script, and default /etc/sysconfig/xdm + - install-{g,lx,light,sd}dm now install both xdm files, change + inittab to start xdm, and adjust /etc/sysconfig/xdm for the + particular target 2019-12-03 DJ Lucas <[email protected]> * Fix typo (postfix) in firewalld bootscript Modified: trunk/bootscripts/blfs/init.d/postgresql ============================================================================== --- trunk/bootscripts/blfs/init.d/postgresql Wed Sep 30 01:27:11 2020 (r23773) +++ trunk/bootscripts/blfs/init.d/postgresql Thu Oct 1 22:59:59 2020 (r23774) @@ -36,14 +36,14 @@ install -dm755 -o postgres -g postgres /run/postgresql - su - postgres -c '/usr/bin/pg_ctl start -W -D /srv/pgsql/data \ + su - postgres -c '/usr/bin/pg_ctl start -s -D /srv/pgsql/data \ -l /srv/pgsql/data/logfile -o "-i" ' evaluate_retval ;; stop) log_info_msg "Stopping PostgreSQL daemon..." - su - postgres -c "/usr/bin/pg_ctl stop -m smart -D /srv/pgsql/data" + su - postgres -c "/usr/bin/pg_ctl stop -m smart -s -D /srv/pgsql/data" evaluate_retval ;; -- http://lists.linuxfromscratch.org/listinfo/blfs-book FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
