~ubuntu-branches/ubuntu/intrepid/debootstrap/intrepid

« back to all changes in this revision

Viewing changes to scripts/debian/sid

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson, Frans Pop, Colin Watson
  • Date: 2008-04-29 19:36:19 UTC
  • Revision ID: james.westby@ubuntu.com-20080429193619-1025n778zn21ltih
Tags: 1.0.9
[ Frans Pop ]
* Error out on unrecognized options to avoid invalid options to be
  recognized as arguments.

[ Colin Watson ]
* Use 'chown 0:0' in all scripts rather than deprecated 'chown 0.0'
  (thanks, Evan Klitzke).
* Add (Ubuntu) intrepid as a symlink to gutsy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
    setup_etc
44
44
    if [ ! -e "$TARGET/etc/fstab" ]; then
45
45
        echo '# UNCONFIGURED FSTAB FOR BASE SYSTEM' > "$TARGET/etc/fstab"
46
 
        chown 0.0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
 
46
        chown 0:0 "$TARGET/etc/fstab"; chmod 644 "$TARGET/etc/fstab"
47
47
    fi
48
48
 
49
49
    if [ -x "$TARGET/usr/bin/md5sum.textutils" ] && [ \! -e "$TARGET/usr/bin/md5sum" ]; then