123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- # Ownerships and permissions
- chown root:games usr/games usr/share/games usr/local/games var/games
- chown root:log var/log
- chown root:mail var/mail
- chown root:lp var/spool/lpd
- chown root:news var/spool/news
- chmod 775 var/log
- chmod 2775 var/mail
- chmod 1777 var/tmp
- # Force symlink creation for "/var/run -> /run" and "/var/lock -> /run/lock"
- (
- cd var || exit 1
- rm -rf run lock
- ln -sf /run/lock .
- ln -sf /run .
- )
- chmod 555 proc sys
- chmod 750 root
- chmod 1777 tmp run/lock
- chmod 775 usr/games usr/share/games usr/local/games var/games
- # Create character special files, if needed
- test -c dev/console || mknod -m 600 dev/console c 5 1
- test -c dev/null || mknod -m 666 dev/null c 1 3
- # Create shm directory if does not exist
- test -e dev/shm || mkdir -p dev/shm
- # Create file records for logins and logouts
- touch \
- var/log/btmp var/log/lastlog var/log/faillog var/log/wtmp var/run/utmp
- chgrp utmp var/log/lastlog var/run/utmp
- chmod 664 var/log/lastlog var/run/utmp
- chmod 600 var/log/btmp
- # Make symlinks at 'rootdir'
- for link_name in bin sbin
- do
- if test ! -L $link_name
- then
- rm -f $link_name
- ln -s -f usr/${link_name} $link_name
- fi
- done
- unset link_name
- (
- cd opt || exit 1
- ln -sf ../etc/opt etc
- )
- (
- cd usr || exit 1
- ln -sf share/doc doc
- ln -sf share/info info
- ln -sf share/man man
- )
- (
- cd usr/local || exit 1
- ln -sf share/doc doc
- ln -sf share/info info
- ln -sf share/man man
- )
- (
- cd var/spool || exit 1
- ln -sf ../mail mail
- )
- # Offer a compatible "X11R6 symlink"
- test -L usr/X11R6 || ( cd usr && ln -sf . X11R6 )
- libSuffix=X
- if test "$libSuffix" != X
- then
- rmdir lib usr/lib usr/local/lib 2> /dev/null
- # Make default library path using 'libSuffix', linking
- # canonical path "lib" to the library suffix directory
- for directory in usr usr/local
- do
- (
- cd "$directory" || exit 1
- test -d lib${libSuffix} || mkdir -p lib${libSuffix}
- if test ! -L lib
- then
- rm -f lib
- ln -s -f lib${libSuffix} lib
- fi
- )
- done
- unset directory
- # This is for the 'rootdir'
- (
- cd . || exit 1
- if test ! -L lib${libSuffix}
- then
- rm -f lib${libSuffix}
- ln -s -f usr/lib${libSuffix} lib${libSuffix}
- fi
- if test ! -L lib
- then
- rm -f lib
- ln -s -f lib${libSuffix} lib
- fi
- )
- else
- # Make canonical paths for usr/lib, usr/local/lib, with a
- # symlink of "/lib -> usr/lib" if 'libSuffix' is empty
- for directory in usr/lib usr/local/lib
- do
- test -e $directory || mkdir -p $directory
- done
- unset directory
- if test ! -L lib || test ! -e lib
- then
- rm -f lib
- ln -s -f usr/lib lib
- fi
- fi
- # Re-create pkgconfig directory
- test -e usr/lib/pkgconfig || mkdir -p usr/lib/pkgconfig
- test -e usr/local/lib/pkgconfig || mkdir -p usr/local/lib/pkgconfig
- for directory in usr/share usr/local/share
- do
- ( cd $directory && ln -sf ../lib/pkgconfig . )
- done
- unset directory
|