Переглянути джерело

Move set-sysv and set-systemd to /usr/sbin

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10523 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Bruce Dubbs 11 роки тому
батько
коміт
9ab3742957
1 змінених файлів з 7 додано та 5 видалено
  1. 7 5
      chapter07/introduction.xml

+ 7 - 5
chapter07/introduction.xml

@@ -175,7 +175,7 @@
     ensure the files that are needed by the system have the correct names.
     ensure the files that are needed by the system have the correct names.
     The following scripts do that.</para>
     The following scripts do that.</para>
 
 
-<screen><userinput remap="install">cat &gt; /usr/local/sbin/set-systemd &lt;&lt; "EOF"
+<screen><userinput remap="install">cat &gt; /usr/sbin/set-systemd &lt;&lt; "EOF"
 #! /bin/bash
 #! /bin/bash
 
 
 ln -svfn init-systemd   /sbin/init
 ln -svfn init-systemd   /sbin/init
@@ -189,9 +189,11 @@ done
 echo "Now reboot with /sbin/reboot-sysv"
 echo "Now reboot with /sbin/reboot-sysv"
 EOF
 EOF
 
 
-chmod 0744 /usr/local/sbin/set-systemd
+chmod 0744 /usr/sbin/set-systemd
+
+cat &gt; /usr/sbin/set-sysv &lt;&lt; "EOF"
+#! /bin/bash
 
 
-cat &gt; /usr/local/sbin/set-sysv &lt;&lt; "EOF"
 ln -sfvn init-sysv    /sbin/init
 ln -sfvn init-sysv    /sbin/init
 ln -svfn init.d-sysv  /etc/init.d
 ln -svfn init.d-sysv  /etc/init.d
 
 
@@ -203,11 +205,11 @@ done
 echo "Now reboot with /sbin/reboot-systemd"
 echo "Now reboot with /sbin/reboot-systemd"
 EOF
 EOF
 
 
-chmod 0744 /usr/local/sbin/set-sysv</userinput></screen>
+chmod 0744 /usr/sbin/set-sysv</userinput></screen>
 
 
   <para>Now set the desired boot system.  The default is System V:</para>
   <para>Now set the desired boot system.  The default is System V:</para>
 
 
-<screen><userinput remap="install">/usr/local/sbin/set-sysv</userinput></screen>
+<screen><userinput remap="install">/usr/sbin/set-sysv</userinput></screen>
 
 
   <para>Changing the boot system can be done at any time by running the 
   <para>Changing the boot system can be done at any time by running the 
   appropriate script above and rebooting.</para>
   appropriate script above and rebooting.</para>