home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / lib / ubiquity / apt-setup / generators / 01setup next >
Encoding:
Text File  |  2005-11-15  |  305 b   |  15 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. file="$1"
  5.  
  6. # add old file as comments
  7. sed 's/^/# /' < $ROOT/etc/apt/sources.list | sed 's/^# # */# /' > $file
  8.  
  9. # start out with old configuration, if any
  10. if [ -e $ROOT/etc/apt/apt.conf ]; then
  11.     cp -a $ROOT/etc/apt/apt.conf $ROOT/etc/apt/apt.conf.new
  12. else
  13.     >$ROOT/etc/apt/apt.conf.new
  14. fi
  15.