Changeset 1d02f01 in bootscripts-standard for clfs/init.d/mountfs
- Timestamp:
- Oct 23, 2007, 1:07:58 AM (17 years ago)
- Branches:
- master
- Children:
- 1680407
- Parents:
- d8a3177
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
clfs/init.d/mountfs
rd8a3177 r1d02f01 19 19 start) 20 20 boot_mesg "Remounting root file system in read-write mode..." 21 mount -n -o remount,rw / &>/dev/null21 mount -n -o remount,rw / >/dev/null 22 22 evaluate_retval 23 23 … … 36 36 # their option list. _netdev denotes a network filesystem. 37 37 boot_mesg "Mounting remaining file systems..." 38 mount -a -O no_netdev &>/dev/null38 mount -a -O no_netdev >/dev/null 39 39 evaluate_retval 40 40 ;; … … 42 42 stop) 43 43 boot_mesg "Unmounting all other currently mounted file systems..." 44 umount -a -d -r &>/dev/null44 umount -a -d -r >/dev/null 45 45 evaluate_retval 46 46 ;;
Note:
See TracChangeset
for help on using the changeset viewer.