You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(202) |
Nov
(201) |
Dec
(280) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(493) |
Feb
(106) |
Mar
(215) |
Apr
(163) |
May
(79) |
Jun
(193) |
Jul
(47) |
Aug
(71) |
Sep
(127) |
Oct
(41) |
Nov
(49) |
Dec
(120) |
2005 |
Jan
(147) |
Feb
(45) |
Mar
(26) |
Apr
(71) |
May
(52) |
Jun
(28) |
Jul
(92) |
Aug
(50) |
Sep
(35) |
Oct
(193) |
Nov
(106) |
Dec
(52) |
2006 |
Jan
(51) |
Feb
(38) |
Mar
(33) |
Apr
(79) |
May
(107) |
Jun
(67) |
Jul
(21) |
Aug
(65) |
Sep
(44) |
Oct
(87) |
Nov
(12) |
Dec
(56) |
2007 |
Jan
(48) |
Feb
(58) |
Mar
(63) |
Apr
(31) |
May
(25) |
Jun
(20) |
Jul
(72) |
Aug
(54) |
Sep
(30) |
Oct
(76) |
Nov
(74) |
Dec
(25) |
2008 |
Jan
(39) |
Feb
(39) |
Mar
(62) |
Apr
(64) |
May
(59) |
Jun
(31) |
Jul
(25) |
Aug
(25) |
Sep
(17) |
Oct
(24) |
Nov
|
Dec
(1) |
2009 |
Jan
(60) |
Feb
(39) |
Mar
(16) |
Apr
(30) |
May
(52) |
Jun
(35) |
Jul
(15) |
Aug
(15) |
Sep
(21) |
Oct
(32) |
Nov
(39) |
Dec
(52) |
2010 |
Jan
(42) |
Feb
(40) |
Mar
(23) |
Apr
(20) |
May
(27) |
Jun
(10) |
Jul
(30) |
Aug
(30) |
Sep
(66) |
Oct
(12) |
Nov
(35) |
Dec
(60) |
2011 |
Jan
(16) |
Feb
(1) |
Mar
(3) |
Apr
(28) |
May
(21) |
Jun
|
Jul
(12) |
Aug
(6) |
Sep
(10) |
Oct
(14) |
Nov
(40) |
Dec
(60) |
2012 |
Jan
(23) |
Feb
(17) |
Mar
(24) |
Apr
(18) |
May
(13) |
Jun
(1) |
Jul
|
Aug
(5) |
Sep
|
Oct
(5) |
Nov
(5) |
Dec
(15) |
2013 |
Jan
(2) |
Feb
(5) |
Mar
(1) |
Apr
(2) |
May
(2) |
Jun
(3) |
Jul
|
Aug
(3) |
Sep
(5) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
2014 |
Jan
(3) |
Feb
(5) |
Mar
(8) |
Apr
(3) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
|
Sep
(4) |
Oct
(10) |
Nov
|
Dec
(9) |
2015 |
Jan
(18) |
Feb
(17) |
Mar
(5) |
Apr
(2) |
May
|
Jun
(5) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
(24) |
Nov
(20) |
Dec
(41) |
2016 |
Jan
(9) |
Feb
(3) |
Mar
(2) |
Apr
(7) |
May
(8) |
Jun
(1) |
Jul
(6) |
Aug
(5) |
Sep
(2) |
Oct
(6) |
Nov
(1) |
Dec
(6) |
2017 |
Jan
(6) |
Feb
(1) |
Mar
|
Apr
(4) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Heiko Z. <smi...@us...> - 2004-05-04 01:05:38
|
Update of /cvsroot/devil-linux/build/config/etc/initrd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16332/config/etc/initrd Modified Files: linuxrc Log Message: - enhanced DL_config parsing in linuxrc (Heiko / Roland Pabel) - fixed apcupsd compilation (Heiko / Roland Pabel) - updated pax to v20040501 - updated kernel to v2.6.5 for development version (Heiko + Oliver Jehle) - updated ipsec-tools to v0.3.1 Index: linuxrc =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/initrd/linuxrc,v retrieving revision 1.68 retrieving revision 1.69 diff -u -d -r1.68 -r1.69 --- linuxrc 9 Apr 2004 22:21:29 -0000 1.68 +++ linuxrc 4 May 2004 01:04:52 -0000 1.69 @@ -35,31 +35,108 @@ export PATH=$PATH:/sbin:/usr/sbin -scan_device_for_config() { - # $1 = device - # $2 = filename - SRC=$1 - FILE=$2 - echo -n "Checking for \"$FILE\" on \"$SRC\" ... " - if mount -n -t auto $SRC /floppy >/dev/null 2>&1 ; then - if [ -e /floppy/$FILE ] ; then - $GREEN - echo "success!" - $NORMAL - DL_CONFIG_SOURCE=$SRC - DL_CONFIG_FILE=$FILE - return 0 +scan_devices_for_config() { + # $1 = filename + # $... = list of devices + FILE=$1 + shift + for SRC in "$@" + do + echo -n "Checking for \"$FILE\" on \"$SRC\" ... " + if mount -n -t auto $SRC /floppy >/dev/null 2>&1 ; then + if [ -e /floppy/$FILE ] ; then + $GREEN + echo "success!" + $NORMAL + DL_CONFIG_SOURCE=$SRC + DL_CONFIG_FILE=$FILE + return 0 + else + $YELLOW + echo "file not found." + $NORMAL + umount /floppy # in case user swaps floppy when we are accepting input + fi else - $YELLOW - echo "file not found." + $RED + echo "mount failed." $NORMAL - umount /floppy # in case user swaps floppy when we are accepting input fi - else - $RED - echo "mount failed." - $NORMAL - fi + done + return 1 +} + +parse_config_cmdline() { + # $1 = cmdline + CMD="$1" + # split at ',' + OIFS=$IFS + IFS=, + for CONFIG_USER in $CMD + do + IFS=$OIFS + CONFIG_USER_ERROR=0 + CONFIG_USER_SRC="" + CONFIG_USER_FILE="" + if [ "$CONFIG_USER" != "" ]; then + case `echo $CONFIG_USER | awk -v FS=: '{ print NF-1 }'` in + 0 ) + CONFIG_USER_SRC=`echo $CONFIG_USER | grep "/dev/"` + CONFIG_USER_FILE=`echo $CONFIG_USER | grep -v "/dev/"` + ;; + 1 ) + CONFIG_USER_SRC=`echo ${CONFIG_USER%:*}` + CONFIG_USER_FILE=`echo ${CONFIG_USER#*:}` + ;; + * ) + CONFIG_USER_ERROR=1 + ;; + esac + # sanity checks + [ "$CONFIG_USER_SRC" != "" ] && CONFIG_USER_ERROR=`echo $CONFIG_USER_SRC | grep -c -v "^/dev/"` + [ "$CONFIG_USER_FILE" != "" ] && CONFIG_USER_ERROR=`echo $CONFIG_USER_FILE | grep -c "/dev/"` + [ "$CONFIG_USER" = ":" ] && CONFIG_USER_ERROR=1 # just in case... + else + CONFIG_USER_ERROR=1 + fi + case $CONFIG_USER_ERROR in + 0 ) + $BLUE + echo -n "Trying to load configuration " + $GREEN + if [ "$CONFIG_USER_FILE" = "" ]; then + CONFIG_USER_FILE=$CONFIG_FILE + fi + echo -n "\"$CONFIG_USER_FILE\" " + $BLUE + if [ "$CONFIG_USER_SRC" != "" ]; then + echo -n "from device " + $GREEN + echo -n "\"$CONFIG_USER_SRC\"" + $BLUE + else + CONFIG_USER_SRC=$CONFIG_SRC_LIST + echo -n "from any device" + fi + echo "." + $NORMAL + scan_devices_for_config $CONFIG_USER_FILE $CONFIG_USER_SRC + if [ $? = 0 ]; then + return 0 + else + $YELLOW + echo "Sorry, could not load your configuration. Continuing searching..." + $NORMAL + fi + ;; + * ) + $RED + echo -n "Improper config parameter : \"$CONFIG_USER\". Ignored." + beep; sleep 1; echo -n "."; sleep 1; beep; echo "." + $NORMAL + ;; + esac + done return 1 } @@ -71,7 +148,7 @@ rm -f /etc/sysconfig/config.tmp } -ask_yes_no () +ask_yes_no() { ANS="" read -p " (y/n) " -r ANS @@ -113,57 +190,13 @@ $NORMAL # parse user config -CONFIG_USER=`awk -v RS=' ' -v FS='=' '/^config=/ { print $2 }' /proc/cmdline` -CONFIG_USER_SRC="" -CONFIG_USER_FILE="" -if [ "$CONFIG_USER" != "" ]; then - CONFIG_USER_ERROR=0 - case `echo $CONFIG_USER | awk -v FS=: '{ print NF-1 }'` in - 0 ) - CONFIG_USER_SRC=`echo $CONFIG_USER | grep "/dev/"` - CONFIG_USER_FILE=`echo $CONFIG_USER | grep -v "/dev/"` - ;; - 1 ) - CONFIG_USER_SRC=`echo ${CONFIG_USER%:*}"` - CONFIG_USER_FILE=`echo ${CONFIG_USER#*:}"` - ;; - * ) - CONFIG_USER_ERROR=1 - ;; - esac - # sanity checks - [ "$CONFIG_USER_SRC" != "" ] && CONFIG_USER_ERROR=`echo $CONFIG_USER_SRC | grep -c -v "^/dev/"` - [ "$CONFIG_USER_FILE" != "" ] && CONFIG_USER_ERROR=`echo $CONFIG_USER_FILE | grep -c "/dev/"` - [ "$CONFIG_USER" = ":" ] && CONFIG_USER_ERROR=1 # just in case... - case $CONFIG_USER_ERROR in - 0 ) - $BLUE - echo -n "Trying to load configuration " - if [ "$CONFIG_USER_FILE" != "" ]; then - $GREEN - echo -n "\"$CONFIG_USER_FILE\" " - $NORMAL - fi - if [ "$CONFIG_USER_SRC" != "" ]; then - $BLUE - echo -n "from device " - $GREEN - echo -n "\"$CONFIG_USER_SRC\" " - $NORMAL - fi - $BLUE - echo "first." - $NORMAL - ;; - * ) - $RED - echo -n "Improper config parameter : \"$CONFIG_USER\". Ignored." - beep; sleep 1; echo -n "."; sleep 1; beep; echo "." - $NORMAL - CONFIG_USER_SRC="" - CONFIG_USER_FILE="" - ;; - esac +CONFIG_USER=`awk -v RS=' ' -v FS='=' '/^DL_config=/ { print $2 }' /proc/cmdline` +CONFIG_USER_ONLY=`grep -c DL_config_no_scan /proc/cmdline` + +if [ "$CONFIG_USER_ONLY" != "0" ]; then + $RED + echo "Disabling automatic scanning for Devil-Linux configuration archive! Good Luck." + $NORMAL fi # generate the device list we need to search for the configuration information @@ -174,32 +207,18 @@ DISCS_SCSI=`find /dev/scsi/ -name "disc" 2> /dev/null` FLOPPIES=`find /dev/floppy/ -name "?" 2> /dev/null` CONFIG_SRC_LIST="$PARTITIONS_SCSI $PARTITIONS_IDE $DISCS_SCSI $CDROM_IDE $CDROM_SCSI $FLOPPIES" -CONFIG_FILE_LIST="etc.tar.bz2" - -if [ "$CONFIG_USER_SRC" != "" ] && [ "$CONFIG_USER_FILE" != "" ]; then - # search for most specific config first - scan_device_for_config $CONFIG_USER_SRC $CONFIG_USER_FILE - if [ $? = 1 ]; then - $YELLOW - echo "Sorry, could not load your configuration. Continuing searching..." - $NORMAL - fi -else - # if no specific config is given, prepend to lists - CONFIG_SRC_LIST="$CONFIG_USER_SRC $CONFIG_SRC_LIST" - CONFIG_FILE_LIST="$CONFIG_USER_FILE $CONFIG_FILE_LIST" -fi +CONFIG_FILE="etc.tar.bz2" -# if no configuration has been found yet, create one until [ "$DL_CONFIG_SOURCE" != "" ] ; do - for CFG_FILE in $CONFIG_FILE_LIST - do - for CFG_SRC in $CONFIG_SRC_LIST - do - scan_device_for_config $CFG_SRC $CFG_FILE && continue 3 - done - done + if [ "$CONFIG_USER" != "" ]; then + parse_config_cmdline $CONFIG_USER && continue + fi + if [ "$CONFIG_USER_ONLY" = "0" ]; then + # scan for etc.tar.bz2 on all devices + scan_devices_for_config $CONFIG_FILE $CONFIG_SRC_LIST && continue + fi + # no configuration has been found yet for CFG_SRC in $CONFIG_SRC_LIST do echo -e "Looking for empty configuation media on $CFG_SRC" @@ -244,6 +263,8 @@ done unset ANS RET +echo $DL_CONFIG_SOURCE > /shm/DL_CONFIG_SOURCE +echo $DL_CONFIG_FILE > /shm/DL_CONFIG_FILE export DL_CONFIG_SOURCE export DL_CONFIG_FILE |
From: Heiko Z. <smi...@us...> - 2004-05-04 01:05:06
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16332/scripts Modified Files: apcupsd build-iso prepare Log Message: - enhanced DL_config parsing in linuxrc (Heiko / Roland Pabel) - fixed apcupsd compilation (Heiko / Roland Pabel) - updated pax to v20040501 - updated kernel to v2.6.5 for development version (Heiko + Oliver Jehle) - updated ipsec-tools to v0.3.1 Index: apcupsd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/apcupsd,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- apcupsd 3 May 2004 15:33:36 -0000 1.5 +++ apcupsd 4 May 2004 01:04:57 -0000 1.6 @@ -47,7 +47,7 @@ --with-upstype=usb \ --with-upscable=usb \ $CONFIG_OPTIONS || exit 1 - make $PMAKE all || exit 1 + make all || exit 1 strip_debug fi ;; Index: build-iso =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build-iso,v retrieving revision 1.64 retrieving revision 1.65 diff -u -d -r1.64 -r1.65 --- build-iso 9 Apr 2004 00:47:36 -0000 1.64 +++ build-iso 4 May 2004 01:04:57 -0000 1.65 @@ -314,6 +314,7 @@ echo -n -e "\0170f You can add your own options by appending them on the command line.\r\n" >> $CDDIR/boot/f2.txt echo -n -e "\01704 Don't override any of the above options unless you know what you are doing!\r\n\r\n" >> $CDDIR/boot/f2.txt echo -n -e "\0170f For booting into Single-User mode append \"S\", e.g. \"$BOOT_OPTION_DEFAULT S\".\r\n\r\n" >> $CDDIR/boot/f2.txt + echo -n -e "\0170f Remember that a runlevel must always be passed as the last argument.\r\n\r\n" >> $CDDIR/boot/f2.txt # Configuration Options - F3 echo -n -e "\030/boot/logo.lss\n\r\n" > $CDDIR/boot/f3.txt @@ -321,10 +322,12 @@ echo -n -e "\0170f Devil-Linux will search for a configuration archive called etc.tar.bz2 on\r\n" >> $CDDIR/boot/f3.txt echo -n -e "\0170f any IDE/SCSI/Floopy device accessible.\r\n" >> $CDDIR/boot/f3.txt echo -n -e "\0170f You can override this behavious by specifying this parameter:\r\n\r\n" >> $CDDIR/boot/f3.txt - echo -n -e "\01704 config=<device>:<filename>, i.e. config=/dev/floopy/0:backup.tar.bz2\r\n\r\n" >> $CDDIR/boot/f3.txt + echo -n -e "\01704 DL_config=<device1>:<filename1>,<device2>:<filename2>:,...\r\n" >> $CDDIR/boot/f3.txt + echo -n -e "\01704 i.e. DL_config=/dev/floopy/0:backup.tar.bz2\r\n\r\n" >> $CDDIR/boot/f3.txt echo -n -e "\0170f You can omit either \01704device\0170f or \01704filename\0170f thus giving priority to a device or\r\n" >> $CDDIR/boot/f3.txt echo -n -e "\0170f a special file. Devil-Linux will try to make use of your desired config\r\n" >> $CDDIR/boot/f3.txt - echo -n -e "\0170f first, but if it can't find your file, it will load the first one available.\r\n\r\n" >> $CDDIR/boot/f3.txt + echo -n -e "\0170f first, but if it can't find your file, it will load the first one available.\r\n" >> $CDDIR/boot/f3.txt + echo -n -e "\0170f You can also disable automatic scanning by passing \01704DL_config_no_scan\0170f.\r\n\r\n" >> $CDDIR/boot/f3.txt # convert the logo into the syslinux format ppmtolss16 < $DL_DIR/other/devil-linux.pnm >$CDDIR/boot/logo.lss || exit 1 Index: prepare =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/prepare,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- prepare 23 Mar 2004 21:41:31 -0000 1.45 +++ prepare 4 May 2004 01:04:57 -0000 1.46 @@ -137,9 +137,10 @@ fi fi - mv $KERNELDIR/include/net/pkt_sched.h $KERNELDIR/include/net/pkt_sched.h.old || exit 1 - sed -e "s/#define PSCHED_CLOCK_SOURCE PSCHED_JIFFIES/#define PSCHED_CLOCK_SOURCE $CONFIG_PSCHED_CLOCK_SOURCE/g" $KERNELDIR/include/net/pkt_sched.h.old > $KERNELDIR/include/net/pkt_sched.h || exit 1 - + if [ "$CONFIG_LINUX_VERSION" = "2.4" ]; then + mv $KERNELDIR/include/net/pkt_sched.h $KERNELDIR/include/net/pkt_sched.h.old || exit 1 + sed -e "s/#define PSCHED_CLOCK_SOURCE PSCHED_JIFFIES/#define PSCHED_CLOCK_SOURCE $CONFIG_PSCHED_CLOCK_SOURCE/g" $KERNELDIR/include/net/pkt_sched.h.old > $KERNELDIR/include/net/pkt_sched.h || exit 1 + fi if [ ! "$CONFIG_VHZ" = "OFF" ] && [ "$CONFIG_LINUX_VERSION" = "2.4" ]; then if [ ! -f devil-linux-vhz-patch.done ]; then bzcat $DL_DIR/src/vhz-j64*.patch.bz2 | patch -p1 || exit 1 |
From: Bruce S. <bl...@us...> - 2004-05-03 18:52:56
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2544 Modified Files: CHANGES md5sum.lst Log Message: Updated "file" to 4.09 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.782 retrieving revision 1.783 diff -u -d -r1.782 -r1.783 --- CHANGES 3 May 2004 18:41:15 -0000 1.782 +++ CHANGES 3 May 2004 18:52:16 -0000 1.783 @@ -22,6 +22,7 @@ # 1.1.4 +- updated file to 4.09 (BS) - updated lftp to 3.0.3 (BS) - updated wol to 0.7.1 (BS) - updated shorewall to 2.0.1 (BS / Martin Glazer) Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.84 retrieving revision 1.85 diff -u -d -r1.84 -r1.85 --- md5sum.lst 3 May 2004 18:41:15 -0000 1.84 +++ md5sum.lst 3 May 2004 18:52:17 -0000 1.85 @@ -82,7 +82,7 @@ 1c5a2ea659680bdd1e238d7828a857a7 src/fam-2.6.10.tar.gz f60cb2a3378bb392c86ea6e4f8006cc0 src/fblogo-0.5.2.tar.gz 9956b30139edaa4f5f77c4d0dbd80225 src/fetchmail-6.2.5.tar.gz -fe7867fbdacee30b294cd8238008d92b src/file-4.08.tar.gz +46209022d57dbca7bb3cc07aa63bd008 src/file-4.09.tar.gz e90ce7222daadeb8616b8db461e17cbc src/findutils-4.1.20.tar.gz ca3f1990522815ccd0a78e9de3afad43 src/freeramdisk.tar.gz 38dea21e5e29db7535596191f1a0f006 src/frox-0.7.13.tar.bz2 |
From: Bruce S. <bl...@us...> - 2004-05-03 18:41:24
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32398 Modified Files: CHANGES md5sum.lst Log Message: Updated lftp to 3.0.3 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.781 retrieving revision 1.782 diff -u -d -r1.781 -r1.782 --- CHANGES 3 May 2004 18:20:06 -0000 1.781 +++ CHANGES 3 May 2004 18:41:15 -0000 1.782 @@ -22,6 +22,7 @@ # 1.1.4 +- updated lftp to 3.0.3 (BS) - updated wol to 0.7.1 (BS) - updated shorewall to 2.0.1 (BS / Martin Glazer) - patched arpwatch2.1a11 with http://www.mulliner.org/collin/arpwatch_repscr.patch (rpd + Frischknecht Peter) Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.83 retrieving revision 1.84 diff -u -d -r1.83 -r1.84 --- md5sum.lst 3 May 2004 18:20:06 -0000 1.83 +++ md5sum.lst 3 May 2004 18:41:15 -0000 1.84 @@ -157,7 +157,7 @@ 571f031068ea7861282f0525d67a9aa0 src/l2tpd-patches.tgz fabbc58e9118570c1f57ae90743e4859 src/lcd4linux-0.9.11.tar.gz 40c2dd4ac137b61b6a55a6478817daf4 src/less-381.tar.gz -bc5ed223daa568fda9a01f89b5000612 src/lftp-2.6.12.tar.bz2 +3d66393dc91ac4aab18444cf3799563e src/lftp-3.0.3.tar.gz 5aa3b0d29b27b7a3e1d80962c94f54cb src/lha_1.14i-5.diff.gz 10410742b0169f3357ef9a3f0f032037 src/lha_1.14i.orig.tar.gz 0749d05f4cc14daaf20af9e40fd6a2f0 src/libdvdcss-1.2.8.tar.bz2 |
From: Bruce S. <bl...@us...> - 2004-05-03 18:20:15
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27172 Modified Files: CHANGES md5sum.lst Log Message: Updated WOL to 0.7.1 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.780 retrieving revision 1.781 diff -u -d -r1.780 -r1.781 --- CHANGES 3 May 2004 18:11:59 -0000 1.780 +++ CHANGES 3 May 2004 18:20:06 -0000 1.781 @@ -22,7 +22,8 @@ # 1.1.4 -- update shorewall to 2.0.1 (BS / Martin Glazer) +- updated wol to 0.7.1 (BS) +- updated shorewall to 2.0.1 (BS / Martin Glazer) - patched arpwatch2.1a11 with http://www.mulliner.org/collin/arpwatch_repscr.patch (rpd + Frischknecht Peter) - filesystems didn't get unmounted on shutdown/reboot - updated automake to v1.8.4 Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.82 retrieving revision 1.83 diff -u -d -r1.82 -r1.83 --- md5sum.lst 3 May 2004 18:12:00 -0000 1.82 +++ md5sum.lst 3 May 2004 18:20:06 -0000 1.83 @@ -353,7 +353,7 @@ 3897f2a9d0c53a166ba68be9c21353a6 src/which-2.14.tar.gz e489d0dd8d894dd23b1b5f33425742bf src/whois_4.5.28.tar.gz a037f5c19ab8f3a89acb09e8cfd22d5b src/wireless_tools.26.tar.gz -4b5d47bc183a40636e478bab298803c3 src/wol-0.7.0.tar.gz +c2fa9d7e771134ac8c89d56b8197d4ca src/wol-0.7.1.tar.gz e5432b4812b76e31b37cc10b6df62f5f src/wvdial-1.53.tar.gz 1cad92f0fe76cbb15d8f5cc476312406 src/wvstreams-3.70-wvcrypto.patch.bz2 a3c046086ebb951a65faa3eccd44ab48 src/wvstreams-3.70-wvresolver.patch.bz2 |
From: Bruce S. <bl...@us...> - 2004-05-03 18:12:11
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24865 Modified Files: CHANGES md5sum.lst Log Message: Updated Shorewall to 2.0.1 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.779 retrieving revision 1.780 diff -u -d -r1.779 -r1.780 --- CHANGES 2 May 2004 14:55:15 -0000 1.779 +++ CHANGES 3 May 2004 18:11:59 -0000 1.780 @@ -22,6 +22,7 @@ # 1.1.4 +- update shorewall to 2.0.1 (BS / Martin Glazer) - patched arpwatch2.1a11 with http://www.mulliner.org/collin/arpwatch_repscr.patch (rpd + Frischknecht Peter) - filesystems didn't get unmounted on shutdown/reboot - updated automake to v1.8.4 Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.81 retrieving revision 1.82 diff -u -d -r1.81 -r1.82 --- md5sum.lst 3 May 2004 03:05:28 -0000 1.81 +++ md5sum.lst 3 May 2004 18:12:00 -0000 1.82 @@ -297,7 +297,7 @@ 5976a0c34de67c911770fc033d29005a src/sg3_utils-1.04.tgz 4fa404ebb4e29828232b3c9a2abddefd src/shadow-4.0.3.tar.bz2 4a934725cc3a7695b0ddf248736c871a src/shfs-0.33.tar.gz -58106a8953f773c9a7523a7014e62a5f src/shorewall-1.4.10c.tgz +9f142caae41535f543c858d0dd854986 src/shorewall-2.0.1.tgz fc2cb32e926b25afa24f450f9a48fbb1 src/smartmontools-5.26.tar.gz f53ce230616c1f6aafedf546a7cc0f0f src/snort-2.1.1.tar.gz 45ed1b1cd492e3f529085d09c3ffc1b8 src/squid-2.5.STABLE5.tar.bz2 |
From: Bruce S. <bl...@us...> - 2004-05-03 18:12:11
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24865/scripts Modified Files: shorewall Log Message: Updated Shorewall to 2.0.1 Index: shorewall =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/shorewall,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- shorewall 29 Feb 2004 15:34:18 -0000 1.5 +++ shorewall 3 May 2004 18:12:01 -0000 1.6 @@ -35,7 +35,7 @@ mkdir -p $WORKDIR/tmp || exit 1 # Install shorewall into $WORKDIR/tmp - PREFIX=$WORKDIR/tmp ./install.sh /etc/init.d || exit 1 + PREFIX=$WORKDIR/tmp ./install.sh || exit 1 # Create the directories for /var mkdir -p $CDDIR/var/lib/shorewall |
From: Diego T. <rap...@us...> - 2004-05-03 15:37:12
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22509/scripts Modified Files: arpwatch Log Message: arpwatch man added Index: arpwatch =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/arpwatch,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- arpwatch 3 May 2004 15:29:04 -0000 1.19 +++ arpwatch 3 May 2004 15:37:04 -0000 1.20 @@ -29,7 +29,7 @@ build ) if [ "$CONFIG_ARPWATCH" = "y" ]; then bzcat $SRCDIR/arpwatch_repscr.patch.bz2 | patch -p1 || exit 1 - ./configure --bindir=/usr/bin --sbindir=/usr/sbin --localstatedir=/var --sysconfdir=/etc || exit 1 + ./configure --bindir=/usr/bin --mandir=/usr/share/man --sbindir=/usr/sbin --localstatedir=/var --sysconfdir=/etc || exit 1 make $PMAKE REPORT_SCRIPT=/etc/arpwatch/arpwatch_report ARPDIR=/etc/arpwatch all || exit 1 strip_debug fi @@ -39,9 +39,11 @@ if [ "$CONFIG_ARPWATCH" = "y" ]; then rm -rf $WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp/usr/sbin || exit 1 + mkdir -p $WORKDIR/tmp/usr/share/man/man8 || exit 1 mkdir -p $ETCDIR/etc/arpwatch || exit 1 make install DESTDIR=$WORKDIR/tmp || exit 1 + make install-man DESTDIR=$WORKDIR/tmp || exit 1 copy_files $WORKDIR/tmp/usr $CDDIR/ || exit 1 rm -rf $WORKDIR/tmp || exit 1 |
From: Bruce S. <bl...@us...> - 2004-05-03 15:33:45
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21573 Modified Files: apcupsd netacct-mysql cpqarrayd Log Message: Fix docs/man-pages going into the wrong directories. Index: netacct-mysql =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/netacct-mysql,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- netacct-mysql 11 Jan 2004 14:43:04 -0000 1.7 +++ netacct-mysql 3 May 2004 15:33:36 -0000 1.8 @@ -39,6 +39,7 @@ mkdir -p $WORKDIR/tmp/usr/sbin || exit 1 make install DESTDIR=$WORKDIR/tmp + copy_docs $WORKDIR/tmp mkdir -p $ETCDIR/etc || exit 1 cp -dpR $WORKDIR/tmp/usr $CDDIR || exit 1 cp -p $MYDIR/scripts/nacctd $ETCDIR/etc/init.d || exit 1 @@ -47,7 +48,6 @@ echo "START_$MYNAME=no" >> $CONFIGFILE echo >> $CONFIGFILE echo "HELP_$MYNAME=\"$MYNAME is a daemon that logs network traffic\"" >> $SOFTWAREHELP - copy_man rm -rf $WORKDIR/tmp || exit 1 fi Index: cpqarrayd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cpqarrayd,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- cpqarrayd 11 Jan 2004 14:43:04 -0000 1.10 +++ cpqarrayd 3 May 2004 15:33:36 -0000 1.11 @@ -35,8 +35,15 @@ install ) if [ "$CONFIG_CPQARRAYD" = "y" ]; then - mkdir -p $CDDIR/usr/lib || exit 1 - make install DESTDIR=$CDDIR || exit 1 + rm -rf $WORKDIR/tmp || exit 1 + mkdir -p $WORKDIR/tmp || exit 1 + + make install DESTDIR=$WORKDIR/tmp || exit 1 + copy_docs $WORKDIR/tmp + mkdir -p $CDDIR + copy_files $WORKDIR/tmp/usr $CDDIR/ || exit 1 + + rm -rf $WORKDIR/tmp || exit 1 fi ;; Index: apcupsd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/apcupsd,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- apcupsd 8 Apr 2004 23:32:31 -0000 1.4 +++ apcupsd 3 May 2004 15:33:36 -0000 1.5 @@ -62,7 +62,7 @@ mkdir -p $ETCDIR/etc/apcupsd || exit 1 cp -dp $WORKDIR/tmp/etc/apcupsd/* $ETCDIR/etc/apcupsd/ || exit 1 - copy_man $WORKDIR/tmp || exit 1 + copy_docs $WORKDIR/tmp copy_files $WORKDIR/tmp/usr $CDDIR/ || exit 1 copy_files $WORKDIR/tmp/sbin $CDDIR/ || exit 1 |
From: Diego T. <rap...@us...> - 2004-05-03 15:29:14
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20666/scripts Modified Files: arpwatch Log Message: arpwatch scripts Index: arpwatch =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/arpwatch,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- arpwatch 2 May 2004 14:52:52 -0000 1.18 +++ arpwatch 3 May 2004 15:29:04 -0000 1.19 @@ -37,7 +37,7 @@ install ) if [ "$CONFIG_ARPWATCH" = "y" ]; then - rm -rf $WORKDIR/tmp || exit 1 + rm -rf $WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp/usr/sbin || exit 1 mkdir -p $ETCDIR/etc/arpwatch || exit 1 |
From: Diego T. <rap...@us...> - 2004-05-03 15:26:34
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19939/scripts/scripts Added Files: arpwatch Log Message: arpwatch scripts --- NEW FILE: arpwatch --- #!/bin/bash # ARPWATCH init.d script added by Diego Torres <rap...@an...> # from arpwatch of the RedHat Distribution ### BEGIN INIT INFO # Provides: arpwatch # Required-Start: $network $syslog # Required-Stop: $network $syslog # Default-Start: 3 5 # Default-Stop: 0 1 6 # Description: starts the arpwatch daemon ### END INIT INFO # settings source /etc/sysconfig/config # parameters NAME="arpwatch service" CONFIGNAME=ARPWATCH DAEMON=/usr/sbin/arpwatch OPTIONS= # -u <username> : defines with what user id arpwatch should run # -e <email> : the <email> where to send the reports # -s <from> : the <from>-address # source function library source /etc/init.d/functions eval START=\$START_$CONFIGNAME # Determine the base and follow a runlevel link name. base=${0##*/} link=${base#*[SK][0-9][0-9]} # Force execution if not called by a runlevel directory. test $link = $base && START=yes test "$START" = "yes" || exit 0 if [ ! -e $DAEMON ]; then echo echo "$DAEMON not found. Did you install the package?" exit 1 fi case "$1" in start) echo -n "Starting $NAME: " cd /etc/arpwatch ${DAEMON} ${OPTIONS} evaluate_retval ;; stop) echo -n "Shutting down $NAME " killproc ${DAEMON} ;; restart) $0 stop sleep 1 $0 start ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 esac |
From: Bruce S. <bl...@us...> - 2004-05-03 14:32:53
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7581 Modified Files: acl attr xfsprogs Log Message: Fixed missing documentation on CD. Index: xfsprogs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/xfsprogs,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- xfsprogs 24 Feb 2004 03:17:57 -0000 1.24 +++ xfsprogs 3 May 2004 14:32:44 -0000 1.25 @@ -32,22 +32,24 @@ make $PMAKE || exit 1 strip_debug fi - ;; + ;; - install ) + install ) if [ "$CONFIG_XFS" = "y" ]; then make -C build dist SDIR=$(pwd) cd $CDDIR || exit 1 tar -xzf $SDIR/build/tar/xfsprogs*.tar.gz || exit 1 - copy_docs + cp -dpR share/doc/ usr/share/ || exit 1 + cp -dpR man/ usr/share/ || exit 1 + rm -fr doc man fi ;; - * ) - echo "ERROR ($0)" - echo "please add parameter so I know what to do" - exit 1 - ;; + * ) + echo "ERROR ($0)" + echo "please add parameter so I know what to do" + exit 1 + ;; esac Index: attr =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/attr,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- attr 11 Jan 2004 14:43:04 -0000 1.11 +++ attr 3 May 2004 14:32:44 -0000 1.12 @@ -38,7 +38,8 @@ SDIR=$(pwd) cd $CDDIR || exit 1 tar -xzf $SDIR/build/tar/attr*.tar.gz || exit 1 - copy_docs + cp -dpR usr/man/ usr/share/ || exit 1 + rm -fr usr/man ;; * ) Index: acl =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/acl,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- acl 11 Jan 2004 14:43:04 -0000 1.15 +++ acl 3 May 2004 14:32:44 -0000 1.16 @@ -40,7 +40,8 @@ SDIR=$(pwd) cd $CDDIR || exit 1 tar -xzf $SDIR/build/tar/acl*.tar.gz || exit 1 - copy_docs + cp -dpR usr/man/ usr/share/ || exit 1 + rm -fr usr/man ;; * ) |
From: Bruce S. <bl...@us...> - 2004-05-03 03:05:46
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6856 Modified Files: md5sum.lst Log Message: Added arpwatch patch. Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.80 retrieving revision 1.81 diff -u -d -r1.80 -r1.81 --- md5sum.lst 27 Apr 2004 19:34:39 -0000 1.80 +++ md5sum.lst 3 May 2004 03:05:28 -0000 1.81 @@ -15,6 +15,7 @@ a5566c15dbae1f5c86a08482eb405725 src/alsaplayer-0.99.76.tar.bz2 b201f70b0c066ff1bee86106e9ee5b6a src/apcupsd-3.10.13.tar.gz 9ecd00db892737431b0e524f3e52e19e src/arpwatch.tar.gz +101d635b4769a611523bfbc7fb5aec52 src/arpwatch_repscr.patch.bz2 816543754a6c61a066fae7749fa75473 src/attr-2.4.14.src.tar.gz 1ee40f7a676b3cfdc0e3f7cd81551b5f src/autoconf-2.59.tar.bz2 57f405a10fc5990ed6120fbbef3ab502 src/automake-1.8.4.tar.bz2 |
From: Diego T. <rap...@us...> - 2004-05-02 14:56:52
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27016 Modified Files: LINKS Log Message: arpwatch fixes Index: LINKS =================================================================== RCS file: /cvsroot/devil-linux/build/LINKS,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- LINKS 22 Mar 2004 01:34:06 -0000 1.16 +++ LINKS 2 May 2004 14:56:44 -0000 1.17 @@ -68,4 +68,6 @@ variable HZ grsecurity fixes Jaroslav Kysela <pe...@pe...> - \ No newline at end of file + +arpwatch patches: + http://www.mulliner.org/collin/arpwatch_repscr.patch (arpwatch report) |
From: Diego T. <rap...@us...> - 2004-05-02 14:55:24
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26769 Modified Files: CHANGES Log Message: arpwatch fixes Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.778 retrieving revision 1.779 diff -u -d -r1.778 -r1.779 --- CHANGES 28 Apr 2004 23:24:59 -0000 1.778 +++ CHANGES 2 May 2004 14:55:15 -0000 1.779 @@ -22,6 +22,7 @@ # 1.1.4 +- patched arpwatch2.1a11 with http://www.mulliner.org/collin/arpwatch_repscr.patch (rpd + Frischknecht Peter) - filesystems didn't get unmounted on shutdown/reboot - updated automake to v1.8.4 - updated fwlogwatch to v1.0 |
From: Diego T. <rap...@us...> - 2004-05-02 14:53:02
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26304/scripts Modified Files: arpwatch Log Message: arpwatch fixes Index: arpwatch =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/arpwatch,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- arpwatch 11 Jan 2004 14:43:04 -0000 1.17 +++ arpwatch 2 May 2004 14:52:52 -0000 1.18 @@ -28,8 +28,9 @@ case $1 in build ) if [ "$CONFIG_ARPWATCH" = "y" ]; then - ./configure --prefix=/usr --localstatedir=/var || exit 1 - make $PMAKE all || exit 1 + bzcat $SRCDIR/arpwatch_repscr.patch.bz2 | patch -p1 || exit 1 + ./configure --bindir=/usr/bin --sbindir=/usr/sbin --localstatedir=/var --sysconfdir=/etc || exit 1 + make $PMAKE REPORT_SCRIPT=/etc/arpwatch/arpwatch_report ARPDIR=/etc/arpwatch all || exit 1 strip_debug fi ;; @@ -38,10 +39,17 @@ if [ "$CONFIG_ARPWATCH" = "y" ]; then rm -rf $WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp/usr/sbin || exit 1 + mkdir -p $ETCDIR/etc/arpwatch || exit 1 + make install DESTDIR=$WORKDIR/tmp || exit 1 - copy_files $WORKDIR/tmp/usr $CDDIR/ || exit 1 rm -rf $WORKDIR/tmp || exit 1 + + cp $MYDIR/scripts/arpwatch $ETCDIR/etc/init.d || exit 1 + echo "# Start arpwatch?" >> $CONFIGFILE + echo "START_ARPWATCH=no" >> $CONFIGFILE + echo >> $CONFIGFILE + echo "HELP_$MYNAME=\"$MYNAME is a daemon which discover and monitor MAC changes on a local network\"" >> $SOFTWAREHELP fi ;; |
From: Heiko Z. <smi...@us...> - 2004-04-28 23:25:09
|
Update of /cvsroot/devil-linux/build/config/etc/init.d In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14555/config/etc/init.d Modified Files: halt reboot Log Message: unmount filesystems on reboot/shutdown Index: reboot =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/reboot,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- reboot 6 Sep 2003 01:59:26 -0000 1.3 +++ reboot 28 Apr 2004 23:25:00 -0000 1.4 @@ -16,11 +16,12 @@ # Description: reboots the system after shutdown ### END INIT INFO +/etc/init.d/mountfs stop + # # Call reboot. See man halt for the meaning of the parameters # - sync echo "System reboot in progress..." Index: halt =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/halt,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- halt 15 Mar 2004 01:22:51 -0000 1.6 +++ halt 28 Apr 2004 23:25:00 -0000 1.7 @@ -16,6 +16,8 @@ # Description: halts the system after shutdown ### END INIT INFO +/etc/init.d/mountfs stop + # # Call halt. See man halt for the meaning of the parameters # |
From: Heiko Z. <smi...@us...> - 2004-04-28 23:25:08
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14555 Modified Files: CHANGES Log Message: unmount filesystems on reboot/shutdown Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.777 retrieving revision 1.778 diff -u -d -r1.777 -r1.778 --- CHANGES 27 Apr 2004 19:34:39 -0000 1.777 +++ CHANGES 28 Apr 2004 23:24:59 -0000 1.778 @@ -22,6 +22,7 @@ # 1.1.4 +- filesystems didn't get unmounted on shutdown/reboot - updated automake to v1.8.4 - updated fwlogwatch to v1.0 - updated vsftpd to v1.2.2 |
From: Diego T. <rap...@us...> - 2004-04-28 01:33:59
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26585 Modified Files: screen Log Message: oneline fix Index: screen =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/screen,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- screen 11 Jan 2004 14:43:05 -0000 1.3 +++ screen 28 Apr 2004 01:33:43 -0000 1.4 @@ -43,7 +43,7 @@ cp terminfo/screencap -p $WORKDIR/tmp/usr/share/terminfo/s mkdir -p $WORKDIR/tmp/etc cp etc/etcscreenrc $WORKDIR/tmp/etc/screenrc - mkdir -p $WORKDIR/var/run/screen + mkdir -p $WORKDIR/tmp/var/run/screen copy_docs $WORKDIR/tmp cp $WORKDIR/tmp/etc/* $ETCDIR/etc/ || exit 1 rm -rf $WORKDIR/tmp/etc || exit 1 |
From: Heiko Z. <smi...@us...> - 2004-04-27 19:34:48
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15659 Modified Files: CHANGES md5sum.lst Log Message: a bunch of software updaes Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.776 retrieving revision 1.777 diff -u -d -r1.776 -r1.777 --- CHANGES 27 Apr 2004 13:39:34 -0000 1.776 +++ CHANGES 27 Apr 2004 19:34:39 -0000 1.777 @@ -22,6 +22,9 @@ # 1.1.4 +- updated automake to v1.8.4 +- updated fwlogwatch to v1.0 +- updated vsftpd to v1.2.2 - closed security hole where etc.tar.bz2 had the wrong permissions after save-config (Heiko / Tim Tait) - closed security hole where an ordinary user was allowed to mount the configuration floppy - added lcd4linux v0.9.11 (Heiko / Zsiros Zsolt) Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.79 retrieving revision 1.80 diff -u -d -r1.79 -r1.80 --- md5sum.lst 27 Apr 2004 11:24:03 -0000 1.79 +++ md5sum.lst 27 Apr 2004 19:34:39 -0000 1.80 @@ -17,7 +17,7 @@ 9ecd00db892737431b0e524f3e52e19e src/arpwatch.tar.gz 816543754a6c61a066fae7749fa75473 src/attr-2.4.14.src.tar.gz 1ee40f7a676b3cfdc0e3f7cd81551b5f src/autoconf-2.59.tar.bz2 -5e8a685a304c0def671decdfe453a631 src/automake-1.8.3.tar.bz2 +57f405a10fc5990ed6120fbbef3ab502 src/automake-1.8.4.tar.bz2 5238251b4926d778dfe162f6ce729733 src/bash-2.05b.tar.gz 2d6f5c39497a951120759dc72664033e src/beep-1.2.1.tar.gz 94ae7b0f20dc406fdbbf6fac5d57b32f src/bind-9.2.3.tar.gz @@ -85,7 +85,7 @@ e90ce7222daadeb8616b8db461e17cbc src/findutils-4.1.20.tar.gz ca3f1990522815ccd0a78e9de3afad43 src/freeramdisk.tar.gz 38dea21e5e29db7535596191f1a0f006 src/frox-0.7.13.tar.bz2 -c7aa8286f38cf16b5ebba58df083bffc src/fwlogwatch-0.9.3.tar.bz2 +a0aa323568862e23fdbc6473ce6a01b5 src/fwlogwatch-1.0.tar.bz2 a116eec17e7ba085febb74c7758823bd src/gawk-3.1.3.tar.bz2 fd0111ff25e29a8d4864eeb51ef42101 src/gcc-3.3.1-no_fixincludes-2.patch.bz2 1df0644b1109cbc6e31fe5f3a4ffcac2 src/gcc-3.3.1-suppress-libiberty.patch.bz2 @@ -343,7 +343,7 @@ c49d360bbd069d00e2a57804f2a123d9 src/vim-6.2.tar.bz2 1edd81324b4ffc0702c9ff289a342d91 src/vlan.1.8.tar.gz dec2837d33fbc1f96f77014d01739126 src/vobcopy-0.5.13.tar.bz2 -3dd254f9c9c1aea370b2f1ff6212af6e src/vsftpd-1.2.1.tar.gz +5a38e1c69062e7688fbbdae6d1196de2 src/vsftpd-1.2.2.tar.gz 6e676438028e80cd435ba581a7d41a17 src/vtun-2.5.tar.gz 21de2017847ec52d0e511d3f20e38dd8 src/watchdog-errno.patch.bz2 99c5692b628956134ef63a0443b2f8e2 src/watchdog_5.2.3.orig.tar.gz |
From: Heiko Z. <smi...@us...> - 2004-04-27 13:39:44
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32623 Modified Files: CHANGES Log Message: - closed security hole where etc.tar.bz2 had the wrong permissions after save-config (Heiko / Tim Tait) - closed security hole where an ordinary user was allowed to mount the configuration floppy Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.775 retrieving revision 1.776 diff -u -d -r1.775 -r1.776 --- CHANGES 27 Apr 2004 11:23:52 -0000 1.775 +++ CHANGES 27 Apr 2004 13:39:34 -0000 1.776 @@ -22,6 +22,8 @@ # 1.1.4 +- closed security hole where etc.tar.bz2 had the wrong permissions after save-config (Heiko / Tim Tait) +- closed security hole where an ordinary user was allowed to mount the configuration floppy - added lcd4linux v0.9.11 (Heiko / Zsiros Zsolt) - fixed IMQ support (Heiko + Peter Frischknecht) |
From: Heiko Z. <smi...@us...> - 2004-04-27 13:39:44
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32623/scripts/scripts Modified Files: save-config Log Message: - closed security hole where etc.tar.bz2 had the wrong permissions after save-config (Heiko / Tim Tait) - closed security hole where an ordinary user was allowed to mount the configuration floppy Index: save-config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/save-config,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- save-config 1 Apr 2004 01:56:21 -0000 1.27 +++ save-config 27 Apr 2004 13:39:35 -0000 1.28 @@ -140,12 +140,10 @@ error=$? -umount $CONFIG_MOUNT -sync;sync;sync - if [ $error -eq 141 ]; then echo "media protected, configuration not saved" else + chmod 0600 $CONFIG_MOUNT/etc.tar.bz2 $SUCCESS echo "Configuration saved" $NORMAL @@ -154,3 +152,6 @@ # useful for backing up the config elsewhere [ -x /root/bin/post-save-config ] && /root/bin/post-save-config fi + +umount $CONFIG_MOUNT +sync;sync;sync |
From: Heiko Z. <smi...@us...> - 2004-04-27 13:39:44
|
Update of /cvsroot/devil-linux/build/config/etc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32623/config/etc Modified Files: fstab Log Message: - closed security hole where etc.tar.bz2 had the wrong permissions after save-config (Heiko / Tim Tait) - closed security hole where an ordinary user was allowed to mount the configuration floppy Index: fstab =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/fstab,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- fstab 18 Mar 2003 22:02:54 -0000 1.3 +++ fstab 27 Apr 2004 13:39:35 -0000 1.4 @@ -1,2 +1,2 @@ # location of filesystem mount point fs-type options -/dev/fd0 /floppy auto noauto,user 0 0 +/dev/fd0 /floppy auto noauto 0 0 |
From: Heiko Z. <smi...@us...> - 2004-04-27 13:39:21
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32544/scripts/scripts Modified Files: Tag: rel-1-0-patches save-config Log Message: - closed security hole where etc.tar.bz2 had the wrong permissions after save-config (Heiko / Tim Tait) - closed security hole where an ordinary user was allowed to mount the configuration floppy Index: save-config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/save-config,v retrieving revision 1.23 retrieving revision 1.23.2.1 diff -u -d -r1.23 -r1.23.2.1 --- save-config 18 Sep 2003 19:01:27 -0000 1.23 +++ save-config 27 Apr 2004 13:39:12 -0000 1.23.2.1 @@ -111,13 +111,16 @@ error=$? -umount $CONFIG_MOUNT -sync;sync;sync - if [ $error -eq 141 ]; then echo "media protected, configuration not saved" else + chmod 0600 $CONFIG_MOUNT/etc.tar.bz2 + $SUCCESS echo "Configuration saved" $NORMAL fi + +umount $CONFIG_MOUNT +sync;sync;sync + |
From: Heiko Z. <smi...@us...> - 2004-04-27 13:39:21
|
Update of /cvsroot/devil-linux/build/config/etc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32544/config/etc Modified Files: Tag: rel-1-0-patches fstab Log Message: - closed security hole where etc.tar.bz2 had the wrong permissions after save-config (Heiko / Tim Tait) - closed security hole where an ordinary user was allowed to mount the configuration floppy Index: fstab =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/fstab,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -u -d -r1.3 -r1.3.2.1 --- fstab 18 Mar 2003 22:02:54 -0000 1.3 +++ fstab 27 Apr 2004 13:39:12 -0000 1.3.2.1 @@ -1,2 +1,2 @@ # location of filesystem mount point fs-type options -/dev/fd0 /floppy auto noauto,user 0 0 +/dev/fd0 /floppy auto noauto 0 0 |