mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-19 03:39:20 +01:00
Correct permissions on /run/shm. Fixes #2984.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9692 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
878bc8bc0b
commit
ef504c23b1
@ -1,3 +1,7 @@
|
|||||||
|
2011-12-23 Matt Burgess <matthew@linuxfromscratch.org>
|
||||||
|
|
||||||
|
* lfs/init.d/mountvirtfs: Correct permissions on /run/shm
|
||||||
|
|
||||||
2011-11-28 DJ Lucas <dj@linuxfromscratch.org>
|
2011-11-28 DJ Lucas <dj@linuxfromscratch.org>
|
||||||
|
|
||||||
* lfs/init.d/mountfs: Add '-t nosysfs' to umount command
|
* lfs/init.d/mountfs: Add '-t nosysfs' to umount command
|
||||||
|
@ -35,6 +35,7 @@ case "${1}" in
|
|||||||
mkdir -p /run
|
mkdir -p /run
|
||||||
mount -n /run || failed=1
|
mount -n /run || failed=1
|
||||||
mkdir -p /run/{var,lock,shm}
|
mkdir -p /run/{var,lock,shm}
|
||||||
|
chown 1777 /run/shm
|
||||||
|
|
||||||
log_info_msg "Mounting virtual file systems: ${INFO}/run"
|
log_info_msg "Mounting virtual file systems: ${INFO}/run"
|
||||||
|
|
||||||
|
@ -39,6 +39,10 @@
|
|||||||
<listitem>
|
<listitem>
|
||||||
<para>2011-12-22</para>
|
<para>2011-12-22</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>[matthew] - Correct permissions on /run/shm. Fixes
|
||||||
|
<ulink url="&lfs-ticket-root;2984">#2984</ulink>.</para>
|
||||||
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>[matthew] - Add upstream patches for MPFR. Fixes
|
<para>[matthew] - Add upstream patches for MPFR. Fixes
|
||||||
<ulink url="&lfs-ticket-root;2983">#2983</ulink>.</para>
|
<ulink url="&lfs-ticket-root;2983">#2983</ulink>.</para>
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
2011-12-23 Matt Burgess <matthew@linuxfromscratch.org>
|
||||||
|
* etc/init.d/mountvirtfs: Correct permissions on /run/shm
|
||||||
2011-05-23 DJ Lucas <dj@linuxfromscratch.org>
|
2011-05-23 DJ Lucas <dj@linuxfromscratch.org>
|
||||||
* Makefile, etc/default/rc: The value of ETCDIR is used to set the RC_BASE at
|
* Makefile, etc/default/rc: The value of ETCDIR is used to set the RC_BASE at
|
||||||
install time. Changed default ETCDIR to /etc/rc.d and added /etc/init.d
|
install time. Changed default ETCDIR to /etc/rc.d and added /etc/init.d
|
||||||
|
@ -32,6 +32,7 @@ case "${1}" in
|
|||||||
|
|
||||||
# create needed directories in /run
|
# create needed directories in /run
|
||||||
mkdir /run/{var,lock,shm} || failed=1
|
mkdir /run/{var,lock,shm} || failed=1
|
||||||
|
chown 1777 /run/shm
|
||||||
|
|
||||||
(exit ${failed})
|
(exit ${failed})
|
||||||
evaluate_retval standard
|
evaluate_retval standard
|
||||||
|
Loading…
Reference in New Issue
Block a user