home *** CD-ROM | disk | FTP | other *** search
- :
- #
- # init.s3cddx
- #
- # Copyright (C) 1991 Xware.
- #
-
- PATH=/bin:/usr/bin:/etc:/etc/conf/bin
- PERM=/etc/perms/inst # OS (link kit) permlist
-
- : ${OK=0} ${FAIL=1}
-
- #
- # exit with the status passed as argument
- #
-
- cleanup()
- {
- trap '' 1 2 3 15
- exit $1
- }
-
- #
- # main()
- #
-
- cd /
-
- trap 'echo "\nInterrupted! Exiting ..."; cleanup 1' 1 2 3 15
-
- #
- # run mkdev graphics and exit
- #
-
- mkdev graphics
-
- cleanup 0
-
-