Changeset 479 for trunk/openmct/packages/build/buildetc/src/etc/rc.d/rcS
- Timestamp:
- 10/04/07 20:41:46 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/openmct/packages/build/buildetc/src/etc/rc.d/rcS
r475 r479 7 7 8 8 echo -n "Added /usr/lib directory ... " 9 ldconfig -C /etc/ld.so.cache -f/etc/ld.so.conf -X /usr/lib9 /sbin/ldconfig -C /var/etc/ld.so.cache -f /var/etc/ld.so.conf -X /usr/lib 10 10 echo "" 11 11 … … 35 35 if [ "$START_HTTPD" == "yes" ]; then 36 36 echo -n "Starting Web Server ..." 37 if [ -d /usr/ data/www ]; then38 /sbin/httpd -h /usr/ data/www37 if [ -d /usr/var/www ]; then 38 /sbin/httpd -h /usr/var/www 39 39 else 40 /sbin/httpd -h / www40 /sbin/httpd -h /var/www 41 41 fi 42 42 echo "" … … 46 46 # we create the directory with '-p' option on mkdir, so every directory ahead the named directory is builded automaticly 47 47 48 DIRECTORY="/ usr/var /usr/var/empty /usr/var/log/samba /usr/var/run/samba /usr/var/lib/samba /usr/var/lib/nfs"48 DIRECTORY="/var/empty /var/log/samba /var/run/samba /var/lib/samba /var/lib/nfs" 49 49 echo "looking up for $DIRECTORY" 50 50 for i in $DIRECTORY; do … … 53 53 54 54 # ok, and now checking for some files needed for NFS 55 FILES="/ usr/var/lib/nfs/rmtab /usr/var/lib/nfs/etab /usr/var/lib/nfs/xtab"55 FILES="/var/lib/nfs/rmtab /var/lib/nfs/etab /var/lib/nfs/xtab" 56 56 for i in $FILES; do 57 57 test -d $i || touch $i;
