diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-12-06 17:20:33 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-12-06 17:20:33 +0000 |
commit | dbdaa102f2973a554fe1d75b2f630ab6ec5baaba (patch) | |
tree | 46751c0c318f1b623d27edb4739a9431420652a6 /etc | |
parent | 94a4217e0fdd402c1650f3f7fd93095f713cf0a5 (diff) |
set umask to 022 -- make /etc/security stop bitching about this...
Diffstat (limited to 'etc')
-rw-r--r-- | etc/root/dot.cshrc | 1 | ||||
-rw-r--r-- | etc/root/dot.profile | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/etc/root/dot.cshrc b/etc/root/dot.cshrc index a98edf70058..ec2de3d1538 100644 --- a/etc/root/dot.cshrc +++ b/etc/root/dot.cshrc @@ -1,3 +1,4 @@ +umask 022 alias mail Mail set history=1000 set path=(/sbin /usr/sbin /bin /usr/bin) diff --git a/etc/root/dot.profile b/etc/root/dot.profile index 0482fb0efd2..878c321a769 100644 --- a/etc/root/dot.profile +++ b/etc/root/dot.profile @@ -2,6 +2,7 @@ PATH=/sbin:/usr/sbin:/bin:/usr/bin export PATH HOME=/root export HOME +umask 022 if [ -x /usr/bin/tset ]; then eval `/usr/bin/tset -sQ \?$TERM` |