home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / lib / partman / finish.d / 39create_fstab_header < prev    next >
Encoding:
Text File  |  2006-08-30  |  363 b   |  13 lines

  1. #!/bin/sh
  2.  
  3. [ -d /target/etc ] || mkdir /target/etc
  4.  
  5. cat >/target/etc/fstab <<EOF
  6. # /etc/fstab: static file system information.
  7. #
  8. EOF
  9.  
  10. printf "%-15s %-15s %-7s %-15s %-7s %s\n" '# <file system>' '<mount point>' '<type>' '<options>' '<dump>' '<pass>' >> /target/etc/fstab
  11.  
  12. printf "%-15s %-15s %-7s %-15s %-7s %s\n" proc /proc proc defaults 0 0 >> /target/etc/fstab
  13.