Changeset 535
- Timestamp:
- 05/16/08 18:04:25 (7 months ago)
- Location:
- cdd-utils/trunk
- Files:
-
- 2 modified
-
debian/changelog (modified) (1 diff)
-
lib/system.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cdd-utils/trunk/debian/changelog
r533 r535 15 15 * Fix ownership of /etc and /usr, they must be owned by root not bin 16 16 * Support custom gdm theme 17 * Remove cdrom APT sources 17 18 18 19 -- Free Ekanayaka <free@64studio.com> Thu, 08 May 2008 21:55:32 +0200 -
cdd-utils/trunk/lib/system.sh
r534 r535 71 71 echo "deb http://apt.64studio.com/$suite/stable $mother main" > $list 72 72 fi 73 # Comment the cdrom source, we install from the internet73 # Remove the cdrom sources, we install from the internet 74 74 if [ -e /etc/apt/sources.list ]; then 75 sed -i -e ' s/^\(deb cdrom:.*\)/#\1/g' /etc/apt/sources.list75 sed -i -e '/^.*deb cdrom:.*/ d' /etc/apt/sources.list 76 76 fi 77 77 if ! [ -e /proc/net/route ]; then 78 78 mount /proc 79 79 fi 80 if is_ubuntu; then return; fi # We are done 80 81 if route -n | grep -q ^0.0.0.0; then 81 82 apt-get update > /dev/null 2>&1
