diff options
author | neel <neel@FreeBSD.org> | 2014-09-04 01:38:31 +0000 |
---|---|---|
committer | neel <neel@FreeBSD.org> | 2014-09-04 01:38:31 +0000 |
commit | e7f9a8421633bb735c566148fe8cd8522158ff5c (patch) | |
tree | bcda2ba5dcb01106144c9e0575cbd21dda4c85a8 /sbin/shutdown | |
parent | 4480b8a63d1bd7977650f61794397f74bde685ae (diff) | |
download | FreeBSD-src-e7f9a8421633bb735c566148fe8cd8522158ff5c.zip FreeBSD-src-e7f9a8421633bb735c566148fe8cd8522158ff5c.tar.gz |
MFC r270289:
Change file permissions for some setuid executables so they are "o+r".
The executable itself doesn't contain any privileged information.
An example of where this is useful is when makefs(8) is creating an image
that includes /sbin/shutdown. This can now be done without root privileges.
Diffstat (limited to 'sbin/shutdown')
-rw-r--r-- | sbin/shutdown/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/shutdown/Makefile b/sbin/shutdown/Makefile index a6ecb93..905d1bc 100644 --- a/sbin/shutdown/Makefile +++ b/sbin/shutdown/Makefile @@ -8,6 +8,6 @@ MLINKS= shutdown.8 poweroff.8 BINOWN= root BINGRP= operator -BINMODE=4550 +BINMODE=4554 .include <bsd.prog.mk> |