Changeset 6ca1b179 for general


Ignore:
Timestamp:
04/02/2017 06:45:46 AM (7 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
7d35a9d2
Parents:
9e4bfe68
Message:

2nd attempt to fix the php-fpm.default move in php

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@18547 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/php.xml

    r9e4bfe68 r6ca1b179  
    279279<screen role="root"><userinput>make install                                     &amp;&amp;
    280280install -v -m644 php.ini-production /etc/php.ini &amp;&amp;
    281 mv -v /etc/php-fpm.conf{.default,}               &amp;&amp;
    282 mv -v /etc/php-fpm.d/www.conf{.default,}         &amp;&amp;
    283281
    284282install -v -m755 -d /usr/share/doc/php-&php-version; &amp;&amp;
     
    289287ln -v -sfn          /usr/lib/php/doc/Structures_Graph/docs \
    290288                    /usr/share/doc/php-&php-version;</userinput></screen>
     289
     290    <para>
     291      The default configuration files for the fastCGI process manager are
     292      installed only if they do not already exist on the sytem. If this is
     293      the first installation, they should be renamed, as the
     294      <systemitem class='username'>root</systemitem> user:
     295    </para>
     296
     297<screen role="root"><userinput>if [ -f /etc/php-fpm.conf.default ]; then
     298  mv -v /etc/php-fpm.conf{.default,} &amp;&amp;
     299  mv -v /etc/php-fpm.d/www.conf{.default,}
     300fi</userinput></screen>
    291301
    292302    <para>
Note: See TracChangeset for help on using the changeset viewer.