diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-12-15 11:56:09 +0100 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2011-12-15 11:56:09 +0100 |
commit | 31fae37e83036d72ba75b039dcee55fd88683585 (patch) | |
tree | 913b13c732071bdc3f281b0aaad02a613221c06c | |
parent | bd3d853c5c3c0723efcf4af3baecc091b385e8b8 (diff) | |
download | mkinitcpio-31fae37e83036d72ba75b039dcee55fd88683585.tar.gz mkinitcpio-31fae37e83036d72ba75b039dcee55fd88683585.tar.xz |
init: create /run/initramfs as mode 755
init doesn't set a umask, so this was previously created as world
writable and sticky.
Reported-by: Thomas Bächler <thomas@archlinux.org>
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
-rw-r--r-- | init | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ else mknod /dev/mem c 1 1 fi mount -t tmpfs run /run -o nosuid,nodev,mode=0755 -mkdir /run/initramfs +mkdir -m755 /run/initramfs # parse the kernel command line parse_cmdline |