Changeset 522
- Timestamp:
- 05/14/08 08:57:36 (4 months ago)
- Files:
-
- cdd-utils/trunk/cdd-config (modified) (1 diff)
- cdd-utils/trunk/debian/changelog (modified) (1 diff)
- cdd-utils/trunk/lib/suites.sh (modified) (1 diff)
- cdd-utils/trunk/lib/system.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cdd-utils/trunk/cdd-config
r513 r522 2 2 3 3 libdir=/usr/lib/cdd-utils 4 5 lsb=/etc/lsb-release 6 7 if [ ! $lsb ]; then # we're probably on etch 8 DISTRIB_ID=Debian 9 DISTRIB_RELEASE=4.0 10 DISTRIB_CODENAME=etch 11 DISTRIB_DESCRIPTION="Debian 4.0" 12 else 13 . $lsb 14 fi 4 15 5 16 . $libdir/common.sh cdd-utils/trunk/debian/changelog
r518 r522 10 10 * Added missing LMMS desktop file 11 11 * Mount /proc/bus/usb to workaround broken udev midisport rule 12 * Don't ask password to sudoers 12 13 13 14 -- Free Ekanayaka <free@64studio.com> Thu, 08 May 2008 21:55:32 +0200 cdd-utils/trunk/lib/suites.sh
r518 r522 59 59 cdd-config menu hardy 60 60 cdd-config midisport 61 cdd-config sudoers 61 62 62 63 # Various updates and fixes cdd-utils/trunk/lib/system.sh
r506 r522 1 1 # Grant a user superuser priviliges 2 2 sudoers () { 3 4 cfg=/etc/sudoers 5 if ! exists $cfg; then warning $cfg not found; return; fi 6 7 if [ "$DISTRIB_ID" = "Ubuntu" ]; then 8 set_key "%admin" " " "ALL=(ALL) NOPASSWD: ALL" $cfg 9 exit 10 fi 11 3 12 USER=$1 4 13 if nullstr $USER; then warning "no user given"; return; fi
