소스 검색

Reverting my bogus Sysvinit change.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2934 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Greg Schafer 22 년 전
부모
커밋
e6d635255b
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      chapter06/sysvinit-inst.xml

+ 3 - 3
chapter06/sysvinit-inst.xml

@@ -8,13 +8,13 @@ init sends the TERM and KILL signals to the processes which it started.
 Init prints "Sending processes the TERM signal" to the screen. This seems
 to imply that init is sending these signals to all the currently running
 processes. To avoid this confusion, the init.c file can be modified, so
-that the sentence reads "Sending the TERM signal to processes started by
-init".</para>
+that the sentence reads "Sending processes started by init the TERM
+signal".</para>
 
 <para>Edit the halt message:</para>
 
 <para><screen><userinput>cp src/init.c{,.backup}
-sed 's/Sending processes/Sending the TERM signal to processes started by init/g' \
+sed 's/Sending processes/Sending processes started by init/g' \
 &nbsp;&nbsp;&nbsp;&nbsp;src/init.c.backup &gt; src/init.c</userinput></screen></para>
 
 <para>Compile Sysvinit:</para>