diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2011-12-23 19:04:27 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2011-12-23 19:04:27 +0000 |
commit | ef504c23b12c68f2daace826412b56523bed73b0 (patch) | |
tree | 5f45f2baa69627bb781f7cbc9017a67557575cac /bootscripts | |
parent | 878bc8bc0bd1e643ed90adcc98abd8ac69f5fa69 (diff) |
Correct permissions on /run/shm. Fixes #2984.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9692 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'bootscripts')
-rw-r--r-- | bootscripts/ChangeLog | 4 | ||||
-rw-r--r-- | bootscripts/lfs/init.d/mountvirtfs | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/bootscripts/ChangeLog b/bootscripts/ChangeLog index befc985b2..8217e2712 100644 --- a/bootscripts/ChangeLog +++ b/bootscripts/ChangeLog @@ -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> * lfs/init.d/mountfs: Add '-t nosysfs' to umount command diff --git a/bootscripts/lfs/init.d/mountvirtfs b/bootscripts/lfs/init.d/mountvirtfs index be6c8d0a0..b8de10076 100644 --- a/bootscripts/lfs/init.d/mountvirtfs +++ b/bootscripts/lfs/init.d/mountvirtfs @@ -35,6 +35,7 @@ case "${1}" in mkdir -p /run mount -n /run || failed=1 mkdir -p /run/{var,lock,shm} + chown 1777 /run/shm log_info_msg "Mounting virtual file systems: ${INFO}/run" |