Changeset 541
- Timestamp:
- 05/17/08 16:52:16 (7 months ago)
- Location:
- cdd-utils/trunk
- Files:
-
- 3 modified
-
cdd-config (modified) (1 diff)
-
debian/postinst (modified) (1 diff)
-
lib/common.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cdd-utils/trunk/cdd-config
r522 r541 2 2 3 3 libdir=/usr/lib/cdd-utils 4 5 lsb=/etc/lsb-release6 7 if [ ! $lsb ]; then # we're probably on etch8 DISTRIB_ID=Debian9 DISTRIB_RELEASE=4.010 DISTRIB_CODENAME=etch11 DISTRIB_DESCRIPTION="Debian 4.0"12 else13 . $lsb14 fi15 4 16 5 . $libdir/common.sh -
cdd-utils/trunk/debian/postinst
r429 r541 1 #! /bin/sh 2 # postinst script for cdd-utils 3 # 4 # see: dh_installdeb(1) 5 6 set -e 1 #! /bin/sh -e 7 2 8 3 APT_KEY=/usr/share/cdd-utils/apt/key -
cdd-utils/trunk/lib/common.sh
r529 r541 51 51 is_ubuntu () { 52 52 53 if [ "$DISTRIB_ID" = "Ubuntu" ]; then 53 cfg=/etc/lsb-release 54 if ! exists $cfg; then return 1; fi 55 56 if grep -q "^DISTRIB_ID=Ubuntu" $cfg; then 54 57 return 0 55 58 else
