Explorar el Código

Fix typo.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9695 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Matthew Burgess hace 13 años
padre
commit
fa78391249
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1 1
      bootscripts/lfs/init.d/mountvirtfs
  2. 1 1
      lsb-bootscripts/etc/init.d/mountvirtfs

+ 1 - 1
bootscripts/lfs/init.d/mountvirtfs

@@ -35,7 +35,7 @@ case "${1}" in
       mkdir -p /run
       mount -n /run || failed=1
       mkdir -p /run/{var,lock,shm}
-      chown 1777 /run/shm
+      chmod 1777 /run/shm
 
       log_info_msg "Mounting virtual file systems: ${INFO}/run" 
 

+ 1 - 1
lsb-bootscripts/etc/init.d/mountvirtfs

@@ -32,7 +32,7 @@ case "${1}" in
 
         # create needed directories in /run
         mkdir /run/{var,lock,shm} || failed=1
-        chown 1777 /run/shm
+        chmod 1777 /run/shm
 
         (exit ${failed})
         evaluate_retval standard