Changeset 488

Show
Ignore:
Timestamp:
05/06/08 23:20:47 (3 months ago)
Author:
free
Message:

Set trinity APT

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cdd-utils/trunk/cdd-config

    r486 r488  
    7575apt () { 
    7676    if nullstr $1; then warning "no list given"; return 1; fi 
    77     list=/etc/apt/sources.list.d/$1.list 
     77    suite=$1 
     78    mother=$2 
     79    list=/etc/apt/sources.list.d/$suite.list 
     80    if ! exists $list; then 
     81        echo "deb http://apt.64studio.com/$suite/stable $mother main" > $list 
     82    fi 
     83    # Comment the cdrom source, we install from the internet 
     84    if [ -e /etc/apt/sources.list ]; then 
     85        sed -i -e 's/^\(deb cdrom:.*\)/#\1/g' /etc/apt/sources.list 
     86    fi 
    7887    if ! [ -e /proc/net/route ]; then 
    7988        mount /proc 
     
    8190    if route -n | grep -q ^0.0.0.0; then 
    8291        apt-get update > /dev/null 2>&1 
    83         # Comment the cdrom source, we install from the internet 
    84         if [ -e /etc/apt/sources.list ]; then 
    85             sed -i -e 's/^\(deb cdrom:.*\)/#\1/g' /etc/apt/sources.list 
    86         fi 
    8792    else 
    8893        sed -i -e 's/^deb /#deb /g' $list 
     
    971976    cdd-config qjackctl 
    972977    cdd-config services cupsys avahi-daemon 
     978    cdd-config apt trinity hardy 
    973979 
    974980    # Various updates and fixes 
  • cdd-utils/trunk/debian/changelog

    r486 r488  
    77  * Use actual arrows for Q1 keycodes 
    88  * Disable cupsys avahi-daemon in indamixx 
     9  * Set trinity APT 
    910 
    1011 -- Free Ekanayaka <free@64studio.com>  Sun, 27 Apr 2008 18:24:52 +0200