]> git.pld-linux.org Git - projects/rc-scripts.git/commitdiff
- changed /var/run/utmp(x) and /var/log/wtmp(x) permissions to 660 in
authorTomasz Pala <gotar@pld-linux.org>
Tue, 30 Oct 2001 09:02:58 +0000 (09:02 +0000)
committerTomasz Pala <gotar@pld-linux.org>
Tue, 30 Oct 2001 09:02:58 +0000 (09:02 +0000)
  order to assure compatibility with SysVinit and utempter packages.

svn-id: @965

rc.d/rc.sysinit

index 57b63fdbebdf4a78588a9e0e03de3b5c29153615..8a1ee580f5fef0efb18dc33dce3f738b2fbad271 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 #
 # /etc/rc.d/rc.sysinit - run once at boot time
-# $Id: rc.sysinit,v 1.87 2001/10/24 22:27:13 orzech Exp $
+# $Id: rc.sysinit,v 1.88 2001/10/30 09:02:58 gotar Exp $
 #
 # Taken in part from Miquel van Smoorenburg's bcheckrc.
 # Changes:     Arkadiusz Mi¶kiewicz <misiek@pld.org.pl>
@@ -585,12 +585,12 @@ if ! is_no "$NEED_XFILES" ; then
        :>/var/run/utmpx
        touch /var/log/wtmpx
        chown root.utmp /var/run/utmpx /var/log/wtmpx
-       chmod 0664 /var/run/utmpx /var/log/wtmpx
+       chmod 0660 /var/run/utmpx /var/log/wtmpx
 else
        :>/var/run/utmp
        touch /var/log/wtmp
        chown root.utmp /var/run/utmp /var/log/wtmp
-       chmod 0664 /var/run/utmp /var/log/wtmp
+       chmod 0660 /var/run/utmp /var/log/wtmp
 fi
 
 # Clean /tmp
This page took 0.041889 seconds and 4 git commands to generate.