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: Serge L. <sma...@us...> - 2008-05-20 09:39:20
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv19474/scripts Added Files: flow-tools Log Message: - added flow-tools (netflow collector) - updated software --- NEW FILE: flow-tools --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/flow-tools,v $ # $Revision: 1.1 $ # $Date: 2008/05/20 09:39:13 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: flow-tools # Required-Start: $basebuildtools $libs perl # Required-Stop: # Default-Start: 1 2 # Default-Stop: # Description: package for collecting and processing NetFlow data ### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) if [ "$CONFIG_FLOWTOOLS" = "y" ]; then if [ "$CONFIG_OPENSSL_BIN" = "y" ]; then OPTIONS="$OPTIONS --with-openssl" fi if [ "$CONFIG_MYSQL_CLIENT" = "y" ]; then OPTIONS="$OPTIONS --with-mysql" fi if [ "$CONFIG_POSTGRESQL_CLIENT" = "y" ]; then OPTIONS="$OPTIONS --with-pgsql" fi ./configure --prefix=/usr --sysconfdir=/etc/flow-tools --disable-nls --enable-lfs $OPTIONS || exit 1 make $PMAKE || exit 1 if [ "$CONFIG_PERL" = "y" ]; then pushd contrib/ > /dev/null || exit 1 tar vfxz Cflow-*.tar.gz && cd Cflow-* || exit 1 perl Makefile.PL || exit 1 popd > /dev/null fi strip_debug fi ;; install ) if [ "$CONFIG_FLOWTOOLS" = "y" ]; then rm -rf $TMPDIR || exit 1 mkdir -p $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 if [ "$CONFIG_PERL" = "y" ]; then pushd contrib/Cflow-* > /dev/null || exit 1 make install DESTDIR=$TMPDIR || exit 1 popd > /dev/null fi rm -f $TMPDIR/usr/lib/*a || exit 1 rm -rf $TMPDIR/usr/include || exit 1 cp -dpvR $TMPDIR/etc/* $ETCDIR/etc/ || exit 1 rm -rf $TMPDIR/etc || exit 1 cp -dpR $TMPDIR/* $CDDIR/ || exit 1 rm -rf $TMPDIR || exit 1 fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |
|
From: Serge L. <sma...@us...> - 2008-05-20 09:39:19
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv19474 Modified Files: md5sum.lst CHANGES Log Message: - added flow-tools (netflow collector) - updated software Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.434 retrieving revision 1.435 diff -u -d -r1.434 -r1.435 --- md5sum.lst 14 May 2008 11:46:51 -0000 1.434 +++ md5sum.lst 20 May 2008 09:39:12 -0000 1.435 @@ -103,14 +103,14 @@ 697cd50030babdd0161146ee83702f9a src/aoe6-60.tar.gz d2e710176430a28d624500e145d9ffe3 src/apcupsd-3.12.1.tar.gz c74dd987ae8006d5a60f2464cedb2b94 src/arping-2.06.tar.gz -9ecd00db892737431b0e524f3e52e19e src/arpwatch.tar.gz +cebfeb99c4a7c2a6cee2564770415fe7 src/arpwatch-2.1a15.tar.gz 101d635b4769a611523bfbc7fb5aec52 src/arpwatch_repscr.patch.bz2 ac0f33a7fb8484eecee9c9e1db112e34 src/asm_types.h.patch 867eb6e8863e39900382d77e2b538696 src/attr_2.4.41-1.tar.gz 2d13c512850c0d8756a4decdde6aa994 src/aufs-2008-05-02.tar.bz2 36d3fe706ad0950f1be10c46a429efe0 src/autoconf-2.61.tar.bz2 c11b8100bb311492d8220378fd8bf9e0 src/automake-1.9.6.tar.bz2 -3e6da58e0c479ae0de49ae3e6948576e src/awstats-6.6.tar.gz +512cd146247eb178ef023c924f7bb766 src/awstats-6.7.tar.gz 73a0def16eb15e56c57491ac232abcf3 src/bash-3.2-arc4random-1.patch.bz2 a1ed8366c9edb814b90d1616ac20390e src/bash-3.2-fixes-7.patch.bz2 00bfa16d58e034e3c2aa27f390390d30 src/bash-3.2.tar.gz @@ -185,7 +185,7 @@ b931c02e2b23342f664276ef26d1502c src/dvd+rw-tools-5.21.4.10.8.tar.gz 519bc00c3315e127530dbe6968358634 src/e100-3.5.17.tar.gz c9464fc1ac8f2c44647262f3a06b0020 src/e1000-8.0.1.tar.gz -130ce559a0f311ea2bc04a47b4982d0a src/e2fsprogs-1.40.2.tar.gz +450e2fb2461b2296fec770ff8fc147ed src/e2fsprogs-1.40.8.tar.gz 91727db818e5170b2d78a99ee51c2d58 src/eagle-usb-2.3.2.tar.bz2 9e28e82ddb81b910597e7fa60b666997 src/ebtables-brnf-7_vs_2.4.27.diff.gz 66bcbcb2dcf3b981ad4e86e1720e796e src/ebtables-v2.0.8-2.tar.gz @@ -201,6 +201,7 @@ 66b97500b0a1e3c0916b3b5314f597f5 src/fetchmail-6.3.8.tar.bz2 014a69979a8d5225a6ca2bcc4d7e967e src/file-4.23.tar.gz c35ff6502e0b3514c99089cb5d333c25 src/findutils-4.2.30.tar.gz +5741720ad01b5a83a9bb7eaa991dcbb6 src/flow-tools-0.68.4.tar.bz2 65850d0470078269b33eee58cba77ac2 src/fprobe-1.1.tar.bz2 cdb2e4edc47e8a3d5479eeabfb979ebc src/fprobe-ulog-1.1.tar.bz2 e3f65753cdfe12209a522634b801305d src/frandom-1.0.tar.gz @@ -269,7 +270,7 @@ 377371c28ee3c21a76f7024920649ea8 src/iptraf-3.0.0.tar.gz b00084d8bd80b6af3cbc04d3e6fd32e2 src/iptraf-include-fix.diff.bz2 c7a487ef026bb883f04c3ffa631ee20c src/iptraf-netdevice-fix.diff.bz2 -c99e19c66645689b44a871428e003ec7 src/iptstate-2.1.tar.bz2 +6b08f09b9917f644629efea1febec4b3 src/iptstate-2.2.1.tar.bz2 71f42012f6895d6ac541a15a47c3e2c8 src/iputils_20020927-1.diff.gz b5493f7a2997130a4f86c486c9993b86 src/iputils_20020927.orig.tar.gz fb99dce274d2e0c7c3df244388289677 src/ipvsadm-1.24.tar.gz @@ -300,7 +301,7 @@ 04c394ed8e1e7fc455456e79e908916d src/libdnet-1.11.tar.gz 553383d898826c285afb2ee453b07868 src/libdvdcss-1.2.9.tar.bz2 078788c9241ae16763529e1235502337 src/libdvdread-0.9.7.tar.gz -87b50a9d56a553b741e20f85596e2513 src/libevent-1.4.3-stable.tar.gz +5d7591aa6301f06315b52bade472bf2f src/libevent-1.4.4-stable.tar.gz 26703ecef4bbe113b8e6a87572b80b32 src/libgcrypt-1.4.1.tar.bz2 f3e9870e213518b407a959f8d29cd554 src/libgpg-error-1.6.tar.bz2 c2be282595751535a618ae0edeb8f648 src/libiconv-1.12.tar.gz @@ -326,8 +327,8 @@ 8e0ac9797b62ba4dcc8a2fb7936412b0 src/libtool-1.5.22.tar.gz 76865bc1bed90ecb5992a1edcc4d6c15 src/libungif-4.1.4.tar.bz2 caf182cbc7565dac0fd72155919672e6 src/libusb-0.1.12.tar.gz -f5806f5059ef7bd4d3fcf36cf116d1ef src/libxml2-2.6.27.tar.gz -f2061dddea77257488601e20e2f3b5a7 src/libxslt-1.1.22.tar.bz2 +cbc6d381daaa836b90a7ab449c1bc1ae src/libxml2-2.6.30.tar.bz2 +e83ec5d27fc4c10c6f612879bea9a153 src/libxslt-1.1.24.tar.gz d793c9a024b46163e5a8938a4058c3a6 src/linux-2.6.23-mppe-mppc-1.3.patch.bz2 3f23ad4b69d0a552042d1ed0f4399857 src/linux-2.6.24.tar.bz2 8bf5f94d214691743e290506a871479f src/linux-wlan-ng-svn-20080216.tar.bz2 @@ -392,7 +393,7 @@ a0e52a85587c8a5519d822d04862dab4 src/ntop-3.3.tar.gz fcb32a01e1ae3f9ed5bac86b12c7a1cc src/ntp-4.2.4p4.tar.gz 5cc5a621832a70e012462d2069149583 src/ntpconfig-phone.patch.bz2 -b08fde86191154bbcfda860f95a5dca2 src/nut-2.0.5.tar.gz +677a84a83e9be7bc93610413ee696375 src/nut-2.2.2.tar.gz cf1c017496b066b45ffe3d7a303fd6ad src/oidentd-2.0.7.tar.gz 9a4ea86b3ff5bbef1fcf348bcf6abe40 src/open-vm-tools-2008.04.14-87182.tar.gz d7043ba34b5038f0113b099ede0884fb src/openh323-v1_18_0-src.tar.gz @@ -405,8 +406,8 @@ acf70a16359bf3658bdfb74bda1c4419 src/openssl-0.9.8g.tar.gz 60745008b90b7dbe25fe8337c550fec6 src/openvpn-2.0.9.tar.gz 587171c4e15a40adde8aa1b3d77328e9 src/opt-3.19.tar.gz -09a3d852c002cd6f34628dfc2b805aab src/p7zip_4.43-libun7zip.patch.bz2 -9fb8982262f66b4ec0377a67c171cfcb src/p7zip_4.43_src_all.tar.bz2 +212df4b1bcb3e63bea3de23b04e6786e src/p7zip_4.57-libun7zip.patch.bz2 +773f78d8b297eb858626667d4dfa93c7 src/p7zip_4.57_src_all.tar.bz2 1b381b5f1ce67fe0a885d9a7c69b93af src/pam_ldap.tgz 623edc50023b183c7b36a03353edcdf0 src/pam_mysql-0.6.2.tar.gz a5d27ccbaaad9d9fb254b01a3c12bd06 src/pam_radius-1.3.17.tar.gz @@ -422,7 +423,7 @@ 4b2e9cde1f7227448dddba59843efa0b src/pcre-7.7.tar.bz2 9452d398f0fcd4e5cd7ef6628bc78c6e src/pcwd-1.42.tar.gz a377c0c67ab43fd96eeec29ce19e8382 src/perl-5.8.8.tar.bz2 -1fe14ca892460b09f06729941a1bb605 src/php-5.2.5.tar.bz2 +7380ffecebd95c6edb317ef861229ebd src/php-5.2.6.tar.bz2 d922a88782b64441d06547632fd85744 src/pkg-config-0.23.tar.gz 5988e7aeb0ae4dac8d83561265984cc9 src/popt-1.7.tar.gz 082c55e473581d2ff887c6e0912b6554 src/portmap_5-1.diff.gz @@ -468,7 +469,7 @@ cf9fbfbb4215592f9f0e0f8f9d85183d src/sagator-pydspam-0.9.0.tar.bz2 59754cb0c19da6e65c42d0a163c5885a src/samba-3.0.28a.tar.gz 6e2e2c386a89aaff31f048eb2a6c5b1a src/sarg-2.2.3.1.tar.gz -0425cb868cadd026851238452f1db907 src/scponly-4.6.tgz +f1eb94c7588e878df806b63aa8348174 src/scponly-20080308.tgz ed68ea9b43d9fba0972cb017a24940a1 src/screen-4.0.2.tar.gz 7a1cbbbb3341287308e140bd4834c3ba src/sed-4.1.5.tar.gz 31031225d483c0d5ac43e8eb5d0428e0 src/ser-0.9.6_src.tar.gz @@ -476,8 +477,8 @@ 16022367e17f0a7da8c53822beeb5026 src/sg3_utils-1.25.tar.bz2 dd6ca3ac424b447962d7a7af923b7bda src/shadow-4.1.0.tar.bz2 016f49d71bc32eee2b5d11fc1600cfbe src/shfs-0.35.tar.gz -30eed00c6939d47a8987e08337e9a8cf src/shorewall-common-4.0.10.tar.bz2 -0f9a0e14f88f88600f8e7367767421c3 src/shorewall-perl-4.0.10.tar.bz2 +ee1e6d4e6703013791e80902c28e8148 src/shorewall-common-4.0.10.1.tar.bz2 +e13dcbee8d68d93d50463dc496bb510a src/shorewall-perl-4.0.10.1.tar.bz2 d997c041b035c0cd2aa8e50a26093479 src/shorewall-shell-4.0.10.tar.bz2 91a572f80dd5a9af5a0f7f207fd34478 src/siproxd-0.5.13.tar.gz a282846532ecbd6b4a28072373b3a70b src/smartmontools-5.38.tar.gz @@ -488,7 +489,7 @@ 77f66d09aa82981bb6d65fa19a2c1ba9 src/strace-4.5.16.tar.bz2 e1a0d3f103eba260e5fa15ef28f381aa src/strongswan-4.2.1.tar.bz2 1eaec5228979beca4d548f453304e311 src/stunnel-4.21.tar.gz -a92e889132129b50ad5aaab61e546c4e src/sudo-1.6.9p11.tar.gz +b0d01b0c3d55076a47f06f70811be083 src/sudo-1.6.9p16.tar.gz 98798707c72ca65c572cad6870148cdd src/swig-1.3.33.tar.gz 14e7dcd0436d2f49aa403f67e1ef7ddc src/sysfsutils-2.1.0.tar.gz d1afd866d081de66438296ec1419ecf1 src/syslinux-3.61.tar.bz2 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1205 retrieving revision 1.1206 diff -u -d -r1.1205 -r1.1206 --- CHANGES 14 May 2008 11:46:51 -0000 1.1205 +++ CHANGES 20 May 2008 09:39:12 -0000 1.1206 @@ -22,45 +22,61 @@ # 1.3.5 +- added flow-tools 0.68.4 (sl) +- updated arpwatch to 2.1a15 (sl) +- updated awstats to 6.7 (sl) +- updated e2fsprogs to 1.40.8 (sl) +- updated iptstate to 2.2.1 (sl) +- updated libevent to 1.4.4-stable (sl) +- updated libxml2 to 2.6.30 (sl) +- updated libxslt to 1.1.24 (sl) +- updated nut t0 2.2.2 (sl) +- updated p7zip_libun7zip to 4.57 (sl) +- updated p7zip to 4.57 (sl) +- updated php to 5.2.6 (sl) +- updated scponly to 20080308 (sl) +- updated shorewall-common to 4.0.10.1 (sl) +- updated shorewall-perl to 4.0.10.1 (sl) +- updated sudo to 1.6.9p16 (sl) - updated aufs 2008-05-02 (sl) -- updasrc bridge-utils to 1.4 (sl) -- updasrc conntrack-tools to 20080507 (sl) -- updasrc cryptsetup to 1.0.6 (sl) -- updasrc cyrus-imapd to 2.3.12p2 (sl) -- updasrc device-mapper to 1.02.25 (sl) -- updasrc e1000 to 8.0.1 (sl) -- updasrc e100 to 3.5.17 (sl) -- updasrc freeradius-server to 2.0.4 (sl) -- updasrc gnupg to 1.4.9 (sl) -- updasrc hdparm to 8.6 (sl) -- updasrc krb5 to 1.6.3 (sl) -- updasrc libevent to 1.4.3-stable (sl) -- updasrc libgcrypt to 1.4.1 (sl) -- updasrc libiconv to 1.12 (sl) -- updasrc libnetfilter_conntrack to 20080508 (sl) -- updasrc libnfnetlinkto 20080508 (sl) -- updasrc libpcap to 0.9.8 (sl) -- updasrc libpng to 1.2.29 (sl) -- updasrc loop-AES to v3.2c (sl) -- updasrc LVM2 to 2.02.36 (sl) -- updasrc lzo to 2.03 (sl) -- updasrc memtest86+ to 2.01 (sl) -- updasrc nmap to 4.62 (sl) -- updasrc openl2tp to 1.3 (sl) -- updasrc openldap to 2.4.9 (sl) -- updasrc open-vm-tools to 2008.04.14-87182 (sl) -- updasrc kernel to 2.6.24.7 (sl) -- updasrc patch-o-matic-ng to 20080507 (sl) -- updasrc pcre to 7.7 (sl) -- updasrc samba to 3.0.28a (sl) -- updasrc snort to 2.8.1 (sl) -- updasrc strongswan to 4.2.1 (sl) -- updasrc syslog-ng to 2.0.9 (sl) -- updasrc tcpdump to 3.9.8 (sl) -- updasrc util-linux-ng to 2.13.1 (sl) -- updasrc vblade to .16 (sl) -- updasrc xfsprogs to 2.9.8-1 (sl) -- updasrc squid to 3.0.STABLE5 (sl) +- updated bridge-utils to 1.4 (sl) +- updated conntrack-tools to 20080507 (sl) +- updated cryptsetup to 1.0.6 (sl) +- updated cyrus-imapd to 2.3.12p2 (sl) +- updated device-mapper to 1.02.25 (sl) +- updated e1000 to 8.0.1 (sl) +- updated e100 to 3.5.17 (sl) +- updated freeradius-server to 2.0.4 (sl) +- updated gnupg to 1.4.9 (sl) +- updated hdparm to 8.6 (sl) +- updated krb5 to 1.6.3 (sl) +- updated libevent to 1.4.3-stable (sl) +- updated libgcrypt to 1.4.1 (sl) +- updated libiconv to 1.12 (sl) +- updated libnetfilter_conntrack to 20080508 (sl) +- updated libnfnetlinkto 20080508 (sl) +- updated libpcap to 0.9.8 (sl) +- updated libpng to 1.2.29 (sl) +- updated loop-AES to v3.2c (sl) +- updated LVM2 to 2.02.36 (sl) +- updated lzo to 2.03 (sl) +- updated memtest86+ to 2.01 (sl) +- updated nmap to 4.62 (sl) +- updated openl2tp to 1.3 (sl) +- updated openldap to 2.4.9 (sl) +- updated open-vm-tools to 2008.04.14-87182 (sl) +- updated kernel to 2.6.24.7 (sl) +- updated patch-o-matic-ng to 20080507 (sl) +- updated pcre to 7.7 (sl) +- updated samba to 3.0.28a (sl) +- updated snort to 2.8.1 (sl) +- updated strongswan to 4.2.1 (sl) +- updated syslog-ng to 2.0.9 (sl) +- updated tcpdump to 3.9.8 (sl) +- updated util-linux-ng to 2.13.1 (sl) +- updated vblade to .16 (sl) +- updated xfsprogs to 2.9.8-1 (sl) +- updated squid to 3.0.STABLE5 (sl) - updated aoe6 to .60 (sl) - updated iproute2 to 2.6.25 (sl) - updated kernel to 2.6.24.6 (sl) |
|
From: Serge L. <sma...@us...> - 2008-05-19 14:18:45
|
Update of /cvsroot/devil-linux/build/config/etc/initrd In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv23954/config/etc/initrd Modified Files: linuxrc Log Message: - make all symlinks to busybox while booting Index: linuxrc =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/initrd/linuxrc,v retrieving revision 1.99 retrieving revision 1.100 diff -u -d -r1.99 -r1.100 --- linuxrc 16 Apr 2008 13:19:15 -0000 1.99 +++ linuxrc 19 May 2008 14:18:17 -0000 1.100 @@ -204,6 +204,9 @@ # make sure we can write to / mount -n -o remount,rw / +# Create all the symlinks to /bin/busybox +/bin/busybox --install -s + # get rid of modprobe and udevd warnings mkdir -p /shm/etc /shm/etc-mods |
|
From: Serge L. <sma...@us...> - 2008-05-19 12:56:20
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv17116/config Added Files: initrd_initramfs.linuxrc.diff Log Message: - initial INITRAMFS support --- NEW FILE: initrd_initramfs.linuxrc.diff --- diff -aur old/linuxrc new/linuxrc --- old/linuxrc 2008-05-15 07:26:13.000000000 -0400 +++ new/linuxrc 2008-05-15 07:26:12.000000000 -0400 @@ -441,12 +441,7 @@ # start the system by swapping /dev/ram0 and /shm echo "Starting up final system..." -cd /cdrom - -#change to new root and start up the real system -pivot_root . initrd -cd / # see "man 2 pivot_root" -exec /usr/sbin/chroot . /sbin/pre_init $DL_CONFIG_SOURCE $DL_CONFIG_FILE $@ <shm/dev/console >shm/dev/console 2>&1 +exec switch_root /cdrom /sbin/pre_init # something went wrong echo |
|
From: Serge L. <sma...@us...> - 2008-05-19 12:56:20
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv17116 Modified Files: build-iso create_etc Log Message: - initial INITRAMFS support Index: create_etc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/create_etc,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- create_etc 8 Sep 2006 15:48:57 -0000 1.16 +++ create_etc 19 May 2008 12:37:20 -0000 1.17 @@ -33,6 +33,15 @@ cp -dpR $DL_DIR/config/etc/init.d/functions $INITRDDIR/ || exit 1 rm -rf $INITRDDIR/CVS + if [ "$CONFIG_INITRD_FS" = "INITRAMFS" ]; then + echo " converting linuxrc to init... " + pushd $INITRDDIR/ > /dev/null || exit 1 + patch -o init -p1 < $MYDIR/config/initrd_initramfs.linuxrc.diff || exit 1 + chmod 755 ./init || exit 1 + echo "done" + popd > /dev/null + fi + pushd $ETCDIR/etc > /dev/null # add correct version numbers Index: build-iso =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build-iso,v retrieving revision 1.81 retrieving revision 1.82 diff -u -d -r1.81 -r1.82 --- build-iso 1 May 2008 14:43:18 -0000 1.81 +++ build-iso 19 May 2008 12:37:20 -0000 1.82 @@ -174,6 +174,25 @@ echo fi + #=========================================================================== + + if [ "$CONFIG_INITRD_FS" = "INITRAMFS" ]; then + + echo "creating the initial ramfs (initramfs) image.... " + + # store version + echo $DL_VERSION > $INITRDDIR/VERSION + + pushd $INITRDDIR/ + find . | cpio -H newc -o | gzip -9 > $BOOTIMAGEDIR/initrd.gz + popd + + echo "done" + echo + fi + + #=========================================================================== + if [ "$CONFIG_INITRD_FS" = "EXT2" ]; then #=========================================================================== @@ -308,9 +327,12 @@ if [ "$CONFIG_INITRD_FS" = "EXT2" ]; then BOOT_OPTION_RAMDISK="ro ramdisk_size=$ISIZE" fi - + if [ "$CONFIG_INITRD_FS" = "INITRAMFS" ]; then + BOOT_OPTIONS_DL="initrd=/boot/initrd.gz $BOOT_OPTION_RAMDISK" + else + BOOT_OPTIONS_DL="root=/dev/ram0 initrd=/boot/initrd.gz init=/linuxrc $BOOT_OPTION_RAMDISK" + fi #original: DEFAULT /boot/vmlinuz root=/dev/ram1 initrd=/boot/initrd.gz [ro ramdisk=$ISIZE][ramdisk_blocksize=4096] - BOOT_OPTIONS_DL="root=/dev/ram0 initrd=/boot/initrd.gz init=/linuxrc $BOOT_OPTION_RAMDISK" cat > $CDDIR/isolinux.cfg <<-EOF default $BOOT_OPTION_DEFAULT display /boot/message |
|
From: Serge L. <sma...@us...> - 2008-05-19 12:38:52
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv17116/configuration Modified Files: prepare.config Log Message: - initial INITRAMFS support Index: prepare.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/prepare.config,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- prepare.config 19 Apr 2007 15:39:22 -0000 1.21 +++ prepare.config 19 May 2008 12:37:20 -0000 1.22 @@ -28,7 +28,7 @@ menu_add "Build Configuration" bool "Disable Build system logfiles" CONFIG_DISABLELOGGING test -z "$CONFIG_INITRD_FS" && CONFIG_INITRD_FS=EXT2 -menu_add "Build Configuration" list "InitRD Filesystem" CONFIG_INITRD_FS EXT2 +menu_add "Build Configuration" list "InitRD Filesystem" CONFIG_INITRD_FS EXT2 INITRAMFS if [ "$CONFIG_KERNEL_CPU" = "686" -o "$CONFIG_KERNEL_CPU" = "VIAC3_2" ]; then menu_add "Build Configuration|Processor and Memory" list "PSCHED_CLOCK_SOURCE" CONFIG_PSCHED_CLOCK_SOURCE PSCHED_GETTIMEOFDAY PSCHED_JIFFIES PSCHED_CPU |
|
From: Serge L. <sma...@us...> - 2008-05-15 11:10:25
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv713 Modified Files: config_busybox Log Message: - add switch_root for initramfs support Index: config_busybox =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/config_busybox,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- config_busybox 17 Apr 2008 12:25:12 -0000 1.34 +++ config_busybox 15 May 2008 11:10:19 -0000 1.35 @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit # Busybox version: 1.9.2 -# Wed Apr 16 05:25:36 2008 +# Thu May 15 05:14:55 2008 # CONFIG_HAVE_DOT_CONFIG=y @@ -484,7 +484,7 @@ # CONFIG_READPROFILE is not set # CONFIG_SETARCH is not set CONFIG_SWAPONOFF=y -# CONFIG_SWITCH_ROOT is not set +CONFIG_SWITCH_ROOT=y CONFIG_UMOUNT=y CONFIG_FEATURE_UMOUNT_ALL=y |
|
From: Björn R. <br...@us...> - 2008-05-14 14:10:56
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv20056 Modified Files: heartbeat Log Message: - further updates Index: heartbeat =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/heartbeat,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- heartbeat 14 May 2008 13:59:39 -0000 1.5 +++ heartbeat 14 May 2008 14:10:50 -0000 1.6 @@ -117,7 +117,7 @@ DISTFUNCS=/etc/rc.d/init.d/functions SUBSYS=heartbeat -INSMOD=/sbin/insmod +MODPROBE=/sbin/modprobe US=`uname -n` # Set this to a 1 if you want to automatically load kernel modules @@ -205,7 +205,7 @@ init_watchdog() { if - [ -f /proc/devices -a -x $INSMOD ] + [ -f /proc/devices -a -x $MODPROBE ] then init_watchdog_linux fi @@ -239,7 +239,7 @@ then : Watchdog requested by $CONFIG file # - # We try and insmod the module if there's no dev or the dev exists + # We try and modprobe the module if there's no dev or the dev exists # and points to the softdog major device. # if @@ -263,7 +263,7 @@ then : softdog already loaded else - $INSMOD softdog nowayout=0 >/dev/null 2>&1 + $MODPROBE softdog nowayout=0 >/dev/null 2>&1 fi;; esac if @@ -302,7 +302,7 @@ then : OK else - $HA_BIN/ResourceManager verifyallidle + $HA_NOARCHBIN/ResourceManager verifyallidle fi if [ $USE_MODULES = 1 ] @@ -364,8 +364,8 @@ } StandbyHA() { - auto_failback=`ha_parameter auto_failback | tr 'A-Z' 'a-z'` - nice_failback=`ha_parameter nice_failback | tr 'A-Z' 'a-z'` + auto_failback=`ha_parameter auto_failback | tr '[A-Z]' '[a-z]'` + nice_failback=`ha_parameter nice_failback | tr '[A-Z]' '[a-z]'` case "$auto_failback" in *legacy*) echo "auto_failback is set to legacy. Cannot enter standby." @@ -386,7 +386,7 @@ then EchoNoNl "Attempting to enter standby mode" if - $HA_BIN/hb_standby + $HA_NOARCHBIN/hb_standby then # It's impossible to tell how long this will take. echo_success |
|
From: Björn R. <br...@us...> - 2008-05-14 13:59:45
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv15986 Modified Files: heartbeat Log Message: - Updated to current version Index: heartbeat =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/heartbeat,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- heartbeat 10 Mar 2006 01:46:03 -0000 1.4 +++ heartbeat 14 May 2008 13:59:39 -0000 1.5 @@ -36,7 +36,9 @@ # and monitoring networking availability) # # Short-Description: High-availability services. +# Provides: heartbeat HA # Required-Start: $network $time $syslog +# Should-Start: xntpd # Required-Stop: $network $time $syslog # Default-Start: 3 5 # Default-Stop: 0 6 @@ -65,6 +67,27 @@ LOCKDIR=/var/lock/subsys RUNDIR=/var/run + +# Echo without putting a newline on the end +EchoNoNl() { + Echo "$@" +} + +# Echo with escapes enabled... +EchoEsc() { + Echo "$@" +} + +echo_failure() { + EchoEsc " Heartbeat failure [rc=$1]. $rc_failed" + return $1 +} + +echo_success() { + : Cool! It started! + EchoEsc "$rc_done" +} + if [ -r /etc/SuSE-release ] then @@ -93,7 +116,6 @@ # and I suspect Conectiva and Mandrake also supply it. DISTFUNCS=/etc/rc.d/init.d/functions -PROC_HA=$HA_BIN/ha.o SUBSYS=heartbeat INSMOD=/sbin/insmod US=`uname -n` @@ -136,10 +158,10 @@ exit 0 fi -CheckBool() { - case `echo "$1" | tr A-Z a-z` in - y|yes|enable|on|true|1) true;; - *) false;; +CrmEnabled() { + case `ha_parameter crm | tr '[A-Z]' '[a-z]'` in + y|yes|enable|on|true|1|manual) true;; + *) false;; esac } StartLogd() { @@ -276,7 +298,7 @@ EchoNoNl "Starting High-Availability services: " if - CheckBool "`ha_parameter crm`" + CrmEnabled then : OK else @@ -290,6 +312,14 @@ fi rm -f $RUNDIR/ppp.d/* if + [ ! -d $RUNDIR/heartbeat ] + then + mkdir -p $RUNDIR/heartbeat/ccm + mkdir -p $RUNDIR/heartbeat/crm + chown -R hacluster:haclient $RUNDIR/heartbeat + chmod -R 750 $RUNDIR/heartbeat + fi + if [ -f $HA_DIR/ipresources -a ! -f $HA_DIR/haresources ] then mv $HA_DIR/ipresources $HA_DIR/haresources @@ -462,420 +492,4 @@ esac exit $RC -# -# -# $Log$ -# Revision 1.4 2006/03/10 01:46:03 smiley73 -# - corrected ldirector startup -# - updated heartbeat init script -# -# Revision 1.41 2005/09/10 21:46:23 gshi -# fixed a typo in translating upper case to lower case -# -# Revision 1.40 2005/07/26 09:43:01 panjiam -# Added license, bug #668 -# -# Revision 1.39 2005/07/16 14:57:38 alan -# Bug 613: Disabled checking for running resources when CRM is enabled. -# -# Revision 1.38 2005/05/05 19:49:23 gshi -# don't print log info from logd to stdout when starting heartbeat -# -# Revision 1.37 2005/03/15 21:37:53 gshi -# start logging daemon before starting heartbeat -# stop logging daemon after heartbeat has been stopped -# -# Revision 1.36 2004/05/17 15:12:08 lars -# Reverting over-eager approach to disabling old resource manager code. -# -# Revision 1.35 2004/05/15 09:28:09 andrew -# Disable ALL legacy resource management iff configured with --enable-crm -# Possibly I have been a little over-zealous but likely the feature(s) -# would need to be re-written to use the new design anyway. -# -# Revision 1.34 2004/03/19 16:32:18 alan -# Put in a fix which causes us to always load the watchdog timer module with nowayout=0 -# -# Revision 1.33 2004/02/08 09:32:30 alan -# Fixed the standby option in the init script to handle the switch to -# auto_failback correctly. -# -# Revision 1.32 2004/01/20 15:35:09 alan -# Removed some old SuSE-isms from the init script. -# -# Revision 1.31 2003/08/13 04:36:56 alan -# Put in a minor change from Tuomo Soini. -# -# Revision 1.30 2003/06/16 03:50:48 alan -# Fixed up the default start/stop levels for heartbeat -# -# Revision 1.29 2003/05/08 19:46:32 alan -# Fixed an init script incompatibility with current SuSE releases pointed out by -# Markus Markert <mm...@su...>. -# -# Revision 1.28 2003/04/30 19:24:49 alan -# Fixed a spelling error pointed out by Ozan Eren Bilgen <ma...@gs...> -# -# Revision 1.27 2003/02/21 13:41:01 alan -# Minor comment changes to the heartbeat init script. -# -# Revision 1.26 2003/02/20 01:26:42 horms -# Fixed problem with Description: feild. -# Tuomo Soini reported an undisclosed problem with the current format -# on an undisclosed version of Redhat. The change appears not to -# go against LSB 1.3.0[*] which Alan modified this file to conform with the -# other day. -# -# [*] http://www2.linuxbase.org/spec/refspecs/LSB_1.3.0/gLSB/gLSB/initscrcomconv.html -# -# Revision 1.25 2003/02/19 17:50:20 alan -# Fixed a minor comment bug pointed out by LMB. -# -# Revision 1.24 2003/02/18 04:32:09 alan -# Added some comments to the heartbeat init script necessary for LSB -# compatibility. -# -# Revision 1.23 2002/10/21 10:17:18 horms -# hb api clients may now be built outside of the heartbeat tree -# -# Revision 1.22 2002/10/15 13:41:31 alan -# Switched heartbeat over to use the GSource library functions. -# Added the standby capability to the heartbeat init script -# Changed the proctrack library code to use cl_log() instead of g_log(). -# Removed a few unused header files. -# -# Revision 1.21 2002/10/11 03:13:09 horms -# Minor cleanup of output from a "restart" -# -# Revision 1.20 2002/10/09 18:37:07 msoffen -# Left call directly to startstop script instead of the wrapper function. -# -# Revision 1.19 2002/10/09 18:35:54 msoffen -# Created pre-start, pre-stop, post-stop, and pre-stop constructs in startstop and -# moved startstop to documents (to not override). -# -# Revision 1.18 2002/09/20 02:13:20 horms -# Tidied up the output for the restart and reload targets. -# This follows what is done for start and stop. -# Works fine on RedHat 7.2. Hopefully it won't break anything/much else. -# -# Revision 1.17 2002/09/10 15:54:57 msoffen -# Added call on startup (if startstop scrip exists) to startstop script (not -# resource based - heartbeat startup/shutdown based). -# -# Revision 1.16 2002/08/12 14:37:53 msoffen -# Replaced the last echononl with EchoNoNl. -# -# Revision 1.15 2002/04/03 20:02:21 alan -# Made the init starting and stopping priorities into autoconf variables. -# They default to 75 and 5 respectively. They should probably be overridden for -# SuSE in the ConfigureMe script. -# -# Revision 1.14 2002/04/02 19:40:36 alan -# Failover was completely broken because of a typo in the configure.in file -# Changed the run level priorities so that heartbeat starts after -# drbd by default. -# Changed it so that heartbeat by default runs in init level 5 too... -# -# Fixed a problem which happened when both nodes started about simultaneously. -# The result was that hb_standby wouldn't work afterwards. -# -# Raised the debug level of some reasonably verbose messages so that you can -# turn on debug 1 and not be flooded with log messages. -# -# Changed the code so that in the case of nice_failback there is no waiting for -# the other side to give up resources, because we negotiate this in advance. -# It gets this information through and environment variable. -# -# Revision 1.13 2002/03/21 02:03:00 alan -# Added locking to the assignment of interfaces in IPaddr. -# -# Revision 1.12 2002/03/05 21:13:06 alan -# Put in fix suggested by João Miguel P. Sá <joa...@pt...> -# to use grave accents instead of the silly bash notation. -# -# Revision 1.11 2001/11/26 14:04:41 horms -# Log to stdout that <path>/ha.cf is missing if init script exits for that reason. -# (Horms) -# -# Revision 1.10 2001/10/25 16:12:06 alan -# Put in a portability change on path names... -# -# Revision 1.9 2001/10/25 15:00:27 alan -# Put in naming patch from Matt Soffen for heartbeat.in -# -# Revision 1.8 2001/10/24 20:46:29 alan -# A large number of patches. They are in these categories: -# Fixes from Matt Soffen -# Fixes to test environment things - including changing some ERRORs to -# WARNings and vice versa. -# etc. -# -# Revision 1.7 2001/10/13 09:42:51 alan -# Incorporated a small patch from Matt Soffen -# -# Revision 1.6 2001/10/07 03:58:10 alan -# Fixed up the 'echo' code in rc script so that it's portable. -# The 'shellfuncs' function library now have Echo EchoEsc and EchoNoNl functions -# in it. They are supposed to work on any OS. -# -# Revision 1.5 2001/10/05 22:56:01 alan -# Added another missing portability feature... -# -# Revision 1.4 2001/10/05 22:48:05 alan -# Fixed the spelling of the echoesc and echononl shell functions. -# -# Revision 1.3 2001/10/05 22:38:06 alan -# Put in some code to make us more portable. -# -# Revision 1.2 2001/06/28 20:35:00 alan -# Patch from Juri to install our scripts with paths patched appropriately. -# -# Revision 1.1 2001/06/28 14:21:40 alan -# Added heartbeat.in and removed 2 Makefile.in's as per Juri Haberland -# Ypdated .cvsignore files... -# -# Revision 1.1 2001/05/09 23:21:21 mmoerz -# autoconf & automake & libtool changes -# -# * following directories have been added: -# -# - config will contain autoconf/automake scripts -# - linux-ha contains config.h which is generated by autoconf -# will perhaps some day contain headers which are used throughout -# linux-ha -# - replace contains as the name implies replacement stuff for targets -# where specific sources are missing. -# -# * following directories have been added to make a split up between c-code -# and shell scripts and to easy their installation with automake&autoconf -# -# - heartbeat/init.d containment of init.d script for heartbeat -# - heartbeat/logrotate.d containment of logrotate script for heartbeat -# -# - ldirectord/init.d similar to heartbeat -# - ldirectord/logrotate.d similar to heartbeat -# -# * general changes touching the complete repository: -# -# - all Makefiles have been replaced by Makefile.ams. -# -# - all .cvsingnore files have been enhanced to cope with the dirs/files -# that are added by automake/autoconf -# Perhaps it would be a nice idea to include those files, but the sum -# of their size if beyond 100KB and they are likely to vary from -# automake/autoconf version. -# Let's keep in mind that we will have to include them in distribution -# .tgz anyway. -# -# - in dir replace setenv.c was placed to available on platform where -# putenv() has to be used since setenv is depricated (better rewrite -# code -> to be done later) -# -# * following changes have been made to the files of linux-ha: -# -# - all .cvsignore files have been changed to ignore files generated by -# autoconf/automake and all files produced during the build-process -# -# - heartbeat/heartbeat.c: added #include <config.h> -# -# - heartbeat/config.c: added #include <config.h> -# -# * following files have been added: -# - Makefile.am: see above -# - configure.in: man autoconf/automake file -# - acconfig.h: here are additional defines that are needed for -# linux-ha/config.h -# - bootstrap: the shell script that 'compiles' the autoconf/automake script -# into a useable form -# - config/.cvsignore: no comment -# - doc/Makefile.am: no comment -# - heartbeat/Makefile.am: no comment -# - heartbeat/lib/Makefile.am: no comment -# - heartbeat/init.d/.cvsignore: no comment -# - heartbeat/init.d/heartbeat: copy of hearbeat/hearbeat.sh -# - heartbeat/init.d/Makefile.am: no comment -# - heartbeat/logrotate.d/.cvsignore: no comment -# - heartbeat/logrotate.d/Makefile.am: no comment -# - heartbeat/logrotate.d/heartbeat: copy of hearbeat/heartbeat.logrotate -# - heartbeat/rc.d/Makefile.am: no comment -# - heartbeat/resource.d/Makefile.am: no comment -# - ldirectord/Makefile.am: no comment -# - ldirectord/init.d/Makefile.am: no comment -# - ldirectord/init.d/.cvsignore: no comment -# - ldirectord/init.d/ldiretord: copy of ldirectord/ldirectord.sh -# - ldirectord/logrotate.d/Makefile.am: no comment -# - ldirectord/logrotate.d/.cvsignore: no comment -# - ldirectord//ldiretord: copy of ldirectord/ldirectord.logrotate -# - linux-ha/.cvsignore: no comment -# - replace/.cvsignore: no comment -# - replace/setenv.c: replacement function for targets where setenv is missing -# - replace/Makefile.am: no comment -# - stonith/Makefile.am: no comment -# -# Revision 1.35 2001/02/25 18:45:59 alan -# Changed the watchdog code to use the new ha_parameter function. -# -# Revision 1.34 2001/02/25 18:39:58 alan -# Added code to sleep for "enough" seconds during a restart to ensure that -# takeover happens like it should. -# -# Revision 1.33 2001/02/07 07:10:20 alan -# Added code to verify that all resources are idle when starting heartbeat. -# -# Revision 1.32 2000/12/23 05:08:59 horms -# Cleaned up debian flims -# -# Revision 1.31 2000/12/20 16:54:41 alan -# Changed "restart" in heartbeat to actually do a stop followed by a start. -# Reload still does the no-failover reload operation. -# -# Revision 1.30 2000/11/25 13:07:44 alan -# Fixed a minor bug in the heartbeat startup script for SuSE. -# Replaced the makefile with a correct version after it was slammed with -# a new/old version by someone who is Debianizing it. -# -# Revision 1.29 2000/11/17 13:28:46 alan -# Made the code slightly more SuSE-friendly in its messages. -# Increased the release number :-) -# -# Revision 1.28 2000/08/01 12:25:59 alan -# Yet another few comment changes... -# -# Revision 1.27 2000/08/01 12:25:05 alan -# More political comment changes... -# -# Revision 1.26 2000/08/01 12:21:55 alan -# Some comment changes. -# -# Revision 1.25 2000/06/21 04:34:48 alan -# Changed henge.com => linux-ha.org and al...@he... => al...@su... -# -# Revision 1.24 2000/06/12 22:07:59 alan -# Spelling correction in a comment. -# -# Revision 1.23 2000/06/12 22:06:30 alan -# Finished updating the code for restart. -# -# Revision 1.22 2000/06/12 22:03:11 alan -# Put in a fix to the link status code, to undo something I'd broken, and also to simplify it. -# I changed heartbeat.sh so that it uses the -r flag to restart heartbeat instead -# of stopping and starting it. -# -# Revision 1.21 2000/06/12 06:11:09 alan -# Changed resource takeover order to left-to-right -# Added new version of nice_failback. Hopefully it works wonderfully! -# Regularized some error messages -# Print the version of heartbeat when starting -# Hosts now have three statuses {down, up, active} -# SuSE compatability due to Friedrich Lobenstock and alanr -# Other minor tweaks, too numerous to mention. -# -# Revision 1.20 2000/04/27 12:50:20 alan -# Changed the port number to 694. Added the pristene target to the ldirectord -# Makefile. Minor tweaks to heartbeat.sh, so that it gives some kind of -# message if there is no configuration file yet. -# -# Revision 1.19 2000/04/24 07:08:13 horms -# Added init script to ldirectord, fixed hearbeat.sh to work with RH6.2 again, heartbeat.sh now aborts if /etc/ha.d/ha.cf is not present. Added sample ldirectord.cf. Moved logging directives to the top of the sample ha.cf. Incremented version in master Makefile to 0.4.7apre2. KERNELDIRS now don't get any treatment in the master makefile, this is to fix a bug (introduced by me) with using an emty in a for i in under some shells -# -# Revision 1.18 2000/04/24 06:34:45 horms -# Made init work cleanly with RH 6.2 again -# -# Revision 1.17 2000/04/23 13:16:17 alan -# Changed the code in heartbeat.sh to no longer user RH's daemon or -# killproc functions. -# -# Revision 1.16 2000/04/03 08:26:29 horms -# -# -# Tidied up the output from heartbeat.sh (/etc/rc.d/init.d/heartbeat) -# on Redhat 6.2 -# -# Loging to syslog if a facility is specified in ha.cf is instead of -# rather than as well as file logging as per instructions in ha.cf -# -# Fixed a small bug in shellfunctions that caused logs to syslog -# to be garbled. -# -# Revision 1.15 1999/11/11 06:02:43 alan -# Minor change to make heartbeat default enabled on startup. -# -# Revision 1.14 1999/11/11 05:48:52 alan -# Added code to start up heartbeat automatically. -# -# Revision 1.13 1999/10/19 13:55:36 alan -# Changed comments about being red hat compatible -# Also, changed heartbeat.c to be both SuSE and Red Hat compatible in it's -s -# output -# -# Revision 1.12 1999/10/19 01:56:51 alan -# Removed the sleep between shutdown and startup, since that's now in -# heartbeat itself. -# -# Revision 1.11 1999/10/19 01:49:10 alan -# Put in a sleep between stop and start in restart to make it more reliable. -# -# Revision 1.10 1999/10/10 19:45:21 alanr -# Changed comment -# -# Revision 1.9 1999/10/05 05:17:49 alanr -# Added -s (status) option to heartbeat, and used it in heartbeat.sh... -# -# Revision 1.8 1999/10/05 04:35:26 alanr -# Changed it to use the new heartbeat -k option to shut donw heartbeat. -# -# Revision 1.7 1999/10/04 03:12:39 alanr -# Shutdown code now runs from heartbeat. -# Logging should be in pretty good shape now, too. -# -# Revision 1.6 1999/10/04 01:47:22 alanr -# Fix the problem reported by Thomas Hepper with the code for loading the watchdog -# device correctly. -# -# Revision 1.5 1999/10/03 03:14:04 alanr -# Moved resource acquisition to 'heartbeat', also no longer attempt to make the FIFO, it's now done in heartbeat. It should now be possible to start it up more readily... -# -# Revision 1.4 1999/10/02 17:48:08 alanr -# Put back call to init_fifo. Thanks to Thomas Hepper -# -# Revision 1.3 1999/10/02 04:59:22 alanr -# FreeBSD mkfifo cleanup -# -# Revision 1.2 1999/09/23 15:53:13 alanr -# -# First version to work :-) -# Got this first version to work... -# -# Revision 1.1.1.1 1999/09/23 15:31:24 alanr -# High-Availability Linux -# -# Revision 1.12 1999/09/14 23:07:09 alanr -# another comment change... -# -# Revision 1.11 1999/09/14 23:05:13 alanr -# comment change... -# -# Revision 1.10 1999/09/14 22:32:50 alanr -# Put in Thomas Hepper's fix for killproc. -# Lots of other changes I think... -# -# Revision 1.9 1999/09/07 04:46:34 alanr -# made it exit with proper return codes. -# Also, moved things around according to the FHS... -# -# Revision 1.8 1999/08/22 04:10:37 alanr -# changed the name of this file to heartbeat.sh. -# Also moved the change log to the end of the file... -# -# Revision 1.7 1999/08/22 04:03:13 alanr -# Merged this file with the heartbeat script as suggested by Guenther Thomsen -# -# Revision 1.6 1999/08/21 21:54:12 alanr -# Restructured the code in preparation for combining this script with the -# init script under /etc/rc.d/init.d. -# -# Revision 1.5 1999/08/17 04:34:53 alanr -# added code to create /dev/watchdog and load softdog if necessary... -# -# + |
|
From: Serge L. <sma...@us...> - 2008-05-14 13:23:51
|
Update of /cvsroot/devil-linux/build/scripts/configuration/profiles In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv3002 Modified Files: default server router Log Message: - netacct-mysql was disabled Index: default =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/default,v retrieving revision 1.84 retrieving revision 1.85 diff -u -d -r1.84 -r1.85 --- default 11 Apr 2008 13:25:32 -0000 1.84 +++ default 14 May 2008 13:23:45 -0000 1.85 @@ -114,7 +114,7 @@ CONFIG_NAIL=y CONFIG_NCFTP=y CONFIG_NDIS=y -CONFIG_NETACCT=y +CONFIG_NETACCT=n CONFIG_NETPBM=y CONFIG_NET_SNMP=y CONFIG_NFS=y Index: router =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/router,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- router 22 Mar 2008 18:33:00 -0000 1.20 +++ router 14 May 2008 13:23:45 -0000 1.21 @@ -62,7 +62,7 @@ CONFIG_MTR=y CONFIG_NAIL=y CONFIG_NCFTP=y -CONFIG_NETACCT=y +CONFIG_NETACCT=n CONFIG_NET_SNMP=y CONFIG_NF_BASE=y CONFIG_NF_EXTRA=y Index: server =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/server,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- server 1 May 2008 14:35:01 -0000 1.3 +++ server 14 May 2008 13:23:45 -0000 1.4 @@ -118,7 +118,7 @@ CONFIG_NAIL=y CONFIG_NCFTP=y CONFIG_NDIS=y -CONFIG_NETACCT=y +CONFIG_NETACCT=n CONFIG_NETPBM=y CONFIG_NET_SNMP=y CONFIG_NFS=y |
|
From: Serge L. <sma...@us...> - 2008-05-14 11:47:10
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv31114 Modified Files: CHANGES md5sum.lst Log Message: - massive package update Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1204 retrieving revision 1.1205 diff -u -d -r1.1204 -r1.1205 --- CHANGES 2 May 2008 14:33:18 -0000 1.1204 +++ CHANGES 14 May 2008 11:46:51 -0000 1.1205 @@ -22,6 +22,45 @@ # 1.3.5 +- updated aufs 2008-05-02 (sl) +- updasrc bridge-utils to 1.4 (sl) +- updasrc conntrack-tools to 20080507 (sl) +- updasrc cryptsetup to 1.0.6 (sl) +- updasrc cyrus-imapd to 2.3.12p2 (sl) +- updasrc device-mapper to 1.02.25 (sl) +- updasrc e1000 to 8.0.1 (sl) +- updasrc e100 to 3.5.17 (sl) +- updasrc freeradius-server to 2.0.4 (sl) +- updasrc gnupg to 1.4.9 (sl) +- updasrc hdparm to 8.6 (sl) +- updasrc krb5 to 1.6.3 (sl) +- updasrc libevent to 1.4.3-stable (sl) +- updasrc libgcrypt to 1.4.1 (sl) +- updasrc libiconv to 1.12 (sl) +- updasrc libnetfilter_conntrack to 20080508 (sl) +- updasrc libnfnetlinkto 20080508 (sl) +- updasrc libpcap to 0.9.8 (sl) +- updasrc libpng to 1.2.29 (sl) +- updasrc loop-AES to v3.2c (sl) +- updasrc LVM2 to 2.02.36 (sl) +- updasrc lzo to 2.03 (sl) +- updasrc memtest86+ to 2.01 (sl) +- updasrc nmap to 4.62 (sl) +- updasrc openl2tp to 1.3 (sl) +- updasrc openldap to 2.4.9 (sl) +- updasrc open-vm-tools to 2008.04.14-87182 (sl) +- updasrc kernel to 2.6.24.7 (sl) +- updasrc patch-o-matic-ng to 20080507 (sl) +- updasrc pcre to 7.7 (sl) +- updasrc samba to 3.0.28a (sl) +- updasrc snort to 2.8.1 (sl) +- updasrc strongswan to 4.2.1 (sl) +- updasrc syslog-ng to 2.0.9 (sl) +- updasrc tcpdump to 3.9.8 (sl) +- updasrc util-linux-ng to 2.13.1 (sl) +- updasrc vblade to .16 (sl) +- updasrc xfsprogs to 2.9.8-1 (sl) +- updasrc squid to 3.0.STABLE5 (sl) - updated aoe6 to .60 (sl) - updated iproute2 to 2.6.25 (sl) - updated kernel to 2.6.24.6 (sl) Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.433 retrieving revision 1.434 diff -u -d -r1.433 -r1.434 --- md5sum.lst 4 May 2008 20:22:45 -0000 1.433 +++ md5sum.lst 14 May 2008 11:46:51 -0000 1.434 @@ -86,7 +86,7 @@ 2761b335e82ee818624a429e722348fe src/IMQ-iptables-1.4.0.diff.bz2 55c64bb056b8172ef6eeaf182dccae70 src/ImageMagick-6.3.1-2.tar.bz2 f75e97be15f2238508d8c43f833739e1 src/LPRng-3.8.29-RC2.tar.gz -c33883f3db8185a987ad3c774c685861 src/LVM2.2.02.33.tgz +39617ecc99d7e1aa8712ac60302e36c6 src/LVM2.2.02.36.tgz be4dd1d34ac5933408e13e48f3eb710a src/Linux-PAM-0.99.10.0.tar.bz2 90901044f52f5213a2abc612b9745c1b src/MOSIX-1.9.0.tgz 6b154c442a335c2a281defe17c8008e8 src/MOSKRN-1.9.0.tgz @@ -107,7 +107,7 @@ 101d635b4769a611523bfbc7fb5aec52 src/arpwatch_repscr.patch.bz2 ac0f33a7fb8484eecee9c9e1db112e34 src/asm_types.h.patch 867eb6e8863e39900382d77e2b538696 src/attr_2.4.41-1.tar.gz -c81bd454f77262f105833bf5722c6d71 src/aufs-2008-04-15.tar.bz2 +2d13c512850c0d8756a4decdde6aa994 src/aufs-2008-05-02.tar.bz2 36d3fe706ad0950f1be10c46a429efe0 src/autoconf-2.61.tar.bz2 c11b8100bb311492d8220378fd8bf9e0 src/automake-1.9.6.tar.bz2 3e6da58e0c479ae0de49ae3e6948576e src/awstats-6.6.tar.gz @@ -124,7 +124,7 @@ 53275e1824886368f11f586899707e08 src/bluez-libs-3.9.tar.gz 023a5e6a436f86a28baeec91e4c62736 src/bluez-utils-3.9.tar.gz 00b1eee7f98b68fa762c4efb3b34caa1 src/bonnie++-1.03a.tgz -43bbd2a67b59cac3e15d545f8b51df68 src/bridge-utils-1.1.tar.gz +0182fcac3a2b307113bbec34e5f1c673 src/bridge-utils-1.4.tar.gz 7e26c56012dd5811251c2f87786b9a77 src/busybox-1.9.2.tar.bz2 3c15a0c8d1d3ee1c46a1634d00617b1a src/bzip2-1.0.5.tar.gz ffd824f13f99011984399fc3b7526c71 src/camsource-0.7.0.tar.bz2 @@ -140,7 +140,7 @@ 90e6755ff66c1e8919e8d7af5db0fffa src/compartment-gcc33.diff.bz2 dfe79018632cca7282c7428f2677b931 src/compartment-gcc4.diff.bz2 055c3cfa75c783bdaaa294d7895584c5 src/compartment-no-close-fd.diff.bz2 -eb57f78ebd761451188888c5d195de04 src/conntrack-tools-0.9.6.tar.bz2 +049ae4b907bcc53f5b5a6787a7296d6a src/conntrack-tools-20080507.tar.bz2 eca0de1bf7389694305d7e52cd76a472 src/coreutils-6.10.tar.gz 4740483b05196fa8b28523f8701d84ec src/coreutils-patches.tar.bz2 e02859af1bbbbd73fcbf757acb57e0a4 src/cpio-2.5.tar.gz @@ -148,12 +148,12 @@ 580346fa1012f9d9769192f49d3801fa src/cracklib-2.8.12.tar.gz d18e670e5df560a8745e1b4dede8f84f src/cracklib-words.gz c3331c0509e5f1e1ce26502d8be0c70b src/cron-4.1.tar.bz2 -0aa2f94c39123f1a0352983e5366179c src/cryptsetup-1.0.5.tar.bz2 +00d452eb7a76e39f5749545d48934a10 src/cryptsetup-1.0.6.tar.bz2 a84124caadd4103270e0b84596ecfe83 src/ctags-5.5.4.tar.gz 3e50dd887d6a354be312d874e1d3426c src/curl-7.18.0.tar.bz2 e0eb377840b01e11e5cd008ae9b7d2af src/cutter-1.02.tgz 956ab476ce276c2d19d583e227dbdbea src/cvs-1.12.13.tar.bz2 -113433c1fdc777e3b0466b5ce643b8bc src/cyrus-imapd-2.3.9.tar.gz +ee2c300687994e4982c6af6aa154c742 src/cyrus-imapd-2.3.12p2.tar.gz 45dde9d19193ae9dd388eb68b2027bc9 src/cyrus-sasl-2.1.22.tar.gz c3effff791f4f1386d00a6a68722a688 src/daemontools-0.76.errno.patch.bz2 0b4c4417aa149c4523a071647ad6778f src/daemontools-0.76.tar.gz @@ -167,7 +167,7 @@ d5ece24fb8c24f353c3c93218f8fb24b src/debianutils_2.8.4.tar.gz 7280094f6cc7952051031334d2fdfd14 src/denyhosts.diff.gz 29ade831880b2e0a91d4f49cb73a22dd src/denyhosts_2.5-3.diff.gz -44420c94a412323da9d8b1ce21f2bebd src/device-mapper.1.02.24.tgz +bf0aa12fc69014b578f432b78cd5a927 src/device-mapper.1.02.25.tgz 27d179a3c3fbef576566b456a1168246 src/dhcp-3.1.0.tar.gz b84d34a44b6667ea012e0aad4f9d71bd src/dhcpcd-2.0.0.tar.bz2 de491252e0329e67aed27d1d01eed120 src/dialog_0.9b-20030308.orig.tar.gz @@ -183,8 +183,8 @@ 281bd9dee8d6c1674977257acc80ce64 src/dovecot-1.0.13.tar.gz 056b8c8b3ad9415a52c01b22ff1e64cf src/dspam-3.8.0.tar.gz b931c02e2b23342f664276ef26d1502c src/dvd+rw-tools-5.21.4.10.8.tar.gz -48916063a7582a52db3de8fb06212c93 src/e100-3.5.14.tar.gz -e9676bf13f8dc526eaabdbb189e5385a src/e1000-7.6.9.2.tar.gz +519bc00c3315e127530dbe6968358634 src/e100-3.5.17.tar.gz +c9464fc1ac8f2c44647262f3a06b0020 src/e1000-8.0.1.tar.gz 130ce559a0f311ea2bc04a47b4982d0a src/e2fsprogs-1.40.2.tar.gz 91727db818e5170b2d78a99ee51c2d58 src/eagle-usb-2.3.2.tar.bz2 9e28e82ddb81b910597e7fa60b666997 src/ebtables-brnf-7_vs_2.4.27.diff.gz @@ -204,7 +204,7 @@ 65850d0470078269b33eee58cba77ac2 src/fprobe-1.1.tar.bz2 cdb2e4edc47e8a3d5479eeabfb979ebc src/fprobe-ulog-1.1.tar.bz2 e3f65753cdfe12209a522634b801305d src/frandom-1.0.tar.gz -3cd647f40880dee8693f2e74ab5416e9 src/freeradius-server-2.0.3.tar.bz2 +0b63d1d75e51bd94b62c11c639fa329e src/freeradius-server-2.0.4.tar.bz2 ca3f1990522815ccd0a78e9de3afad43 src/freeramdisk.tar.gz 65234327c5ac46ee00ebda15995d4c1c src/freetype-2.3.5.tar.bz2 d30c35b9820d706ff2f9a6ab3b501247 src/frox-0.7.18.tar.bz2 @@ -230,7 +230,7 @@ a2ec74e909d6916829c70402ea647011 src/glibc-patches.tar.bz2 7ce52531644e6d12f16911b7e3151f3f src/gmp-4.2.2.tar.bz2 8f47cfa4b375deae65aa3b993476e9e4 src/gnugk-2.2.6.tar.gz -e5be39ea81bb07de006e7dd44439cb76 src/gnupg-1.4.8.tar.bz2 +cc52393087480ac8d245625004a6a30c src/gnupg-1.4.9.tar.bz2 f989fe8e24f82d19c8ce55df15784e15 src/gocr-0.43.tar.gz 2c63e827d755527950d9d13fe3d87692 src/gpm-1.20.1.tar.bz2 dd82373f24daa63b64cc282f3404038b src/gradm-2.1.11-200803102037.tar.gz @@ -239,7 +239,7 @@ 7d9c0c70e8f72b98c76beffa69de8704 src/grsecurity-2.1.11-2.6.24.4-200803251800.patch.bz2 cd3f3eb54446be6003156158d51f4884 src/grub-0.97.tar.gz b5bac2d21840ae077e0217bc5e4845b1 src/gzip-1.3.12.tar.gz -62749c6cdf28ce31aae335092fa107df src/hdparm-6.9.tar.gz +237fbceeeba6318b987983fd858994df src/hdparm-8.6.tar.gz 56868ab82936b3f77deb777992c4a80d src/heartbeat-2.1.2.tar.gz 0a8097a8772d5d2de8c5539d3182b82a src/heimdal-0.7.tar.gz c7534dc040ab90218257a78488ecd378 src/hostap-driver-0.4.9.tar.gz @@ -284,7 +284,7 @@ dbd5f3b47ed13132f04c685d608a7547 src/jpegsrc.v6b.tar.gz 7892c7010512a9bc6697a295c921da25 src/kbd-1.12.tar.gz 921da0544059c32e4ef51607b938bb28 src/kernel-patches-2.6.tar.bz2 -ff14f0c556fd5357e0ed872a25d711e0 src/krb5-1.5.2.tar.gz +f32a9647deed175dd6bcc5e22d907541 src/krb5-1.6.3.tar.gz c5dba6b80f583070fe9e6ed6e0c2162e src/l2tpd-0.69.tar.gz 571f031068ea7861282f0525d67a9aa0 src/l2tpd-patches.tgz 783e996bf5e541fecd36c8ae7732f8c5 src/l7-protocols-2008-02-20.tar.gz @@ -300,10 +300,10 @@ 04c394ed8e1e7fc455456e79e908916d src/libdnet-1.11.tar.gz 553383d898826c285afb2ee453b07868 src/libdvdcss-1.2.9.tar.bz2 078788c9241ae16763529e1235502337 src/libdvdread-0.9.7.tar.gz -828064c357fc39215c88540e4d0f986e src/libevent-1.4.2-rc.tar.gz -b013f798a1088afb07336bce5a9c24c5 src/libgcrypt-1.4.0.tar.bz2 +87b50a9d56a553b741e20f85596e2513 src/libevent-1.4.3-stable.tar.gz +26703ecef4bbe113b8e6a87572b80b32 src/libgcrypt-1.4.1.tar.bz2 f3e9870e213518b407a959f8d29cd554 src/libgpg-error-1.6.tar.bz2 -b77a17e4a5a817100ad4b2613935055e src/libiconv-1.11.tar.gz +c2be282595751535a618ae0edeb8f648 src/libiconv-1.12.tar.gz a6ab675558e50ea8d99648f707a121a0 src/liblockfile_1.06.1.tar.gz 2e4487cdf922a6da2546bad74f643205 src/libmad-0.15.0b.tar.gz c4f491dd411a09e9de3b8702ea6f73eb src/libmcrypt-2.5.8.tar.bz2 @@ -312,14 +312,14 @@ be845c41170d72c7db524f3411b50256 src/libnet-1.1.2.1.tar.gz 540ff915e5ac52ec0c00af1384abab40 src/libnet-endianess-fix.diff.bz2 629379482a9e5fa4972c2a8dd611251f src/libnet-shared.diff.bz2 -8c040130230b0f096197683dc8beaa4e src/libnetfilter_conntrack-0.0.89.tar.bz2 -b97bc6747cb4e65b9989daa136f339cb src/libnfnetlink-0.0.33.tar.bz2 +4c5add279efd1abb8246efa18e0cb6d3 src/libnetfilter_conntrack-20080508.tar.bz2 +576f4e1831f47612399f4d664062ecdd src/libnfnetlink-20080508.tar.bz2 9233cb77876eb642374a0d2bcaba1170 src/libnfsidmap-0.20.tar.gz 1f29be3f4bcddb5b2f3d965e78f04006 src/libol-0.3.16.tar.gz 40ee3ec89030f0d6dfdb2cf6100e6685 src/libosip2-2.2.2.tar.gz df1f9875a4c1f4f6be6dd563f0ca7f3e src/libpam-pgsql-0.6.3.tar.bz2 -77bc1f1de0de8488c7cb28e4753b9603 src/libpcap-0.9.7.tar.gz -b1b3794a8b80dd298d4d216f4886ad52 src/libpng-1.2.23.tar.bz2 +5208f24d0328ee7c20b52c43eaa9aa0e src/libpcap-0.9.8.tar.gz +f588cb4ee39e3a333604096f937ea157 src/libpng-1.2.29.tar.bz2 c7cc2f49acdd9955a052029326833fe1 src/libradius-linux-20040827.tar.gz 6b7b6e6df84d4afb469ccc66d04fc24d src/libsafe-2.0-16.tgz 717ac61f1662e774ffc0c627e59c9225 src/libstdc++-compat.tar.bz2 @@ -337,10 +337,10 @@ 552639142e163745f6bcd4f1f3816d8a src/logrotate-3.7.1.tar.gz 937d982006b2a76a83edfcfd2e5a9d7d src/logwatch-7.3.6.tar.gz f90188b0fede61fab371093e32382ab9 src/longhaul-1.2.tar.gz -2c5642ccfa1a780ef4bd76eb873076aa src/loop-AES-v3.2b.tar.bz2 +a7dcba60daf7108308bac7e02991619a src/loop-AES-v3.2c.tar.bz2 094805059be9f363c258c8c808330e08 src/lsof_4.66_src.tar.bz2 6916c0127839f1e454052b683e4691c4 src/lynx2.8.4rel.1.tar.bz2 -ab94d3da364c7cbd5b78d76f1875b0f6 src/lzo-1.08.tar.gz +0c3d078c2e8ea5a88971089a2f02a726 src/lzo-2.03.tar.gz 354853e0b2da90c527e35aabb8d6f1e6 src/make-3.81.tar.bz2 fc30378641cda1bb4e51f39cefd9249a src/makedepend.tar.bz2 67aaaa6df35215e812fd7d89472c44b6 src/man-1.6f.tar.gz @@ -348,7 +348,7 @@ 18b20db6e40480a53bac2870c56fc3c4 src/mc-4.6.1.tar.gz 19d9f0b15fe68a7cae7e9faa02859c89 src/mcrypt-2.6.5.tar.bz2 4235fc330c9d51e6e613a6eee7ebca76 src/mdadm-2.6.4.tgz -52e35228b60431ef474bbb5125ca1201 src/memtest86-3.3.tar.gz +e849eaf4ff3f6f4d7aff32d3dfa1b32c src/memtest86+-2.01.tar.gz 4b80c418bc58add3e40de3be0ac6c02a src/mgetty1.1.30-Dec16.tar.gz d113a853e0ac21c49c5a1acea0daaade src/mhash-0.9.9.tar.bz2 ab010843fb742c8690677cc1fb696fac src/minicom-2.3-rc1.tar.gz @@ -384,7 +384,7 @@ e153d23a3879f33f4a96ed6b706609e3 src/netfilter-layer7-v2.17.tar.gz 37a071debfce1dd9596267448f4b56c8 src/netpbm-10.26.46.tgz 76ee9274c2b867839427eba91b327f03 src/nfs-utils-1.1.2.tar.gz -6201551054050c11182fd6dd91682cb1 src/nmap-4.60.tar.bz2 +4fdaa418f4008509d4c91ec087131d4e src/nmap-4.62.tar.bz2 c011fc1595dd125443df2d357958c85f src/noip_updater_linux_v1.4.tar.gz b2d75e2962f1e3151ef58794d60c9e97 src/nrpe-2.12.tar.gz 33a98e7975f633a9489d7a8938ed6131 src/nsca-2.7.2.tar.gz @@ -394,11 +394,11 @@ 5cc5a621832a70e012462d2069149583 src/ntpconfig-phone.patch.bz2 b08fde86191154bbcfda860f95a5dca2 src/nut-2.0.5.tar.gz cf1c017496b066b45ffe3d7a303fd6ad src/oidentd-2.0.7.tar.gz -708bdbfd55cbda9ec57e1cd4b7a98579 src/open-vm-tools-2008.03.19-82724.tar.gz +9a4ea86b3ff5bbef1fcf348bcf6abe40 src/open-vm-tools-2008.04.14-87182.tar.gz d7043ba34b5038f0113b099ede0884fb src/openh323-v1_18_0-src.tar.gz e1dd82f54cffad3d76da9e712dc58c48 src/openl2tp-0.19_ppp_unix.c.patch.bz2 -93f9db9c5e91e340c1adc28c1e590851 src/openl2tp-1.1.tar.gz -5ef2ea680479e0cee13fdf64a4ef548a src/openldap-2.4.8.tgz +a2b7e12b55e4c11ae0558195f3679055 src/openl2tp-1.3.tar.gz +1d0c8913b4671b2e2e66ed546b4e9bbf src/openldap-2.4.9.tgz 1f1dfaa775f33dd3328169de9bdc292a src/openssh-5.0p1.tar.gz 8d7deea5f6d84fef90d1e256990ef048 src/openssl-0.9.8b-sha.diff.bz2 bf768bc75cfb7e1774d314a2bd953f6d src/openssl-0.9.8e-engine.diff.bz2 @@ -412,14 +412,14 @@ a5d27ccbaaad9d9fb254b01a3c12bd06 src/pam_radius-1.3.17.tar.gz 40dd0853d0c1c2cc019d6e2e8146555a src/passwdgen-1.diff.bz2 097cf193d1b040cf0d135945714faa83 src/passwdgen-2.2.tar.gz -6c93ad526ccb10632ced0d37fa8e0ee5 src/patch-2.6.24.6.bz2 -791adb1e8f539fda05bbc90bdb7ee7ab src/patch-o-matic-ng-20080328.tar.bz2 +0c1c5d6d8cd82e18d62406d2f34d1d38 src/patch-2.6.24.7.bz2 +97d0df81182793868a607b0f3254646a src/patch-o-matic-ng-20080507.tar.bz2 e5f27b822c70f49e492ce21fa7c34d32 src/pax-linux-2.6.24.4-test36.patch.bz2 acf0e368cb33bc2f6a335ba3f5e4fd2b src/pax-utils-0.1.15.tar.bz2 149bcb2508e9bfb092954c294b97f876 src/pci.ids.bz2 9c937db43a72f4ba768af9e1da331885 src/pciutils-2.2.5.tar.gz 3f07c926875f6c5dcb83240f39725177 src/pcmciautils-014.tar.bz2 -2af38e083fb90ef60fa9eda7cc290e86 src/pcre-7.6.tar.bz2 +4b2e9cde1f7227448dddba59843efa0b src/pcre-7.7.tar.bz2 9452d398f0fcd4e5cd7ef6628bc78c6e src/pcwd-1.42.tar.gz a377c0c67ab43fd96eeec29ce19e8382 src/perl-5.8.8.tar.bz2 1fe14ca892460b09f06729941a1bb605 src/php-5.2.5.tar.bz2 @@ -466,7 +466,7 @@ c5cabb219687c483d259bdb0225e2a57 src/sagator-1.0.0.tar.bz2 fa970fc8b4899f3b6afc09936622f672 src/sagator-libclamav-1.2.3.tar.bz2 cf9fbfbb4215592f9f0e0f8f9d85183d src/sagator-pydspam-0.9.0.tar.bz2 -8761cd7c02833d959fbebd4f69895075 src/samba-3.0.28.tar.gz +59754cb0c19da6e65c42d0a163c5885a src/samba-3.0.28a.tar.gz 6e2e2c386a89aaff31f048eb2a6c5b1a src/sarg-2.2.3.1.tar.gz 0425cb868cadd026851238452f1db907 src/scponly-4.6.tgz ed68ea9b43d9fba0972cb017a24940a1 src/screen-4.0.2.tar.gz @@ -481,25 +481,25 @@ d997c041b035c0cd2aa8e50a26093479 src/shorewall-shell-4.0.10.tar.bz2 91a572f80dd5a9af5a0f7f207fd34478 src/siproxd-0.5.13.tar.gz a282846532ecbd6b4a28072373b3a70b src/smartmontools-5.38.tar.gz -8b46997afd728fbdaafdc9b1d0278b07 src/snort-2.6.1.3.tar.gz -eb49bc06ea1a40421b6f1ac9e76d1757 src/squid-2.6.STABLE18.tar.bz2 +a41fd96894ab59ae4df45aa5f3345c52 src/snort-2.8.1.tar.gz +60255e66bca8203afb9a635f318b9c65 src/squid-3.0.STABLE5.tar.bz2 b6700f59c48fde5ad4d12f871acba93a src/squidGuard-1.2.1.tar.gz 617b83cda02eee31562c467ac7289580 src/squidguard-blacklist.tar.bz2 77f66d09aa82981bb6d65fa19a2c1ba9 src/strace-4.5.16.tar.bz2 -35cc7a5e380c62dc5b9a8b0bbf6edbfd src/strongswan-4.1.11.tar.bz2 +e1a0d3f103eba260e5fa15ef28f381aa src/strongswan-4.2.1.tar.bz2 1eaec5228979beca4d548f453304e311 src/stunnel-4.21.tar.gz a92e889132129b50ad5aaab61e546c4e src/sudo-1.6.9p11.tar.gz 98798707c72ca65c572cad6870148cdd src/swig-1.3.33.tar.gz 14e7dcd0436d2f49aa403f67e1ef7ddc src/sysfsutils-2.1.0.tar.gz d1afd866d081de66438296ec1419ecf1 src/syslinux-3.61.tar.bz2 -ae48df049aa09bde55d52f3c08aefbac src/syslog-ng-2.0.8.tar.gz +2d4232f7167c2b4f48794e4f8f80e863 src/syslog-ng-2.0.9.tar.gz 637b7e1e1201b2ebecd6ab8102f19ea7 src/sysstat-8.0.4.tar.bz2 7d5d61c026122ab791ac04c8a84db967 src/sysvinit-2.86.tar.gz 1a7e17f27abf583b3b0bc059a827e68b src/tar-1.20.tar.bz2 1176b5a45e34823ae1d95621449b4baf src/tcp_wrappers-7.6-gcc34-1.patch.bz2 eec4e5d6cda55464970a3157eb3bc534 src/tcp_wrappers_7.6.diff.gz e6fa25f71226d090f34de3f6b122fb5a src/tcp_wrappers_7.6.tar.gz -2aacf4dc9a3bc500a8b4f3887a32cdd5 src/tcpdump-3.9.7.tar.gz +c491a78c52fe73f1f7271aa5d8c6ab2e src/tcpdump-3.9.8.tar.gz ab5f176b489e95141e0df412e52a0f6f src/telnet-bsd-1.0-strncpy.diff.bz2 8fad9ae5e9a57cd7ffbb55706eeba819 src/telnet-bsd-1.0-temp-buffer-increase.diff.bz2 0f9d781e64f4f42957ef62913ac3731a src/telnet-bsd-1.0.diff.bz2 @@ -523,9 +523,9 @@ 9d23919999d6eac9217d1f41472034a9 src/unzip552.tar.gz eb548f4dff0ffa5c4e3f3d4161d7317f src/usb.ids.bz2 88978b4ad891f610620b1b8e5e0f43eb src/usbutils-0.73.tar.gz -48bcb80babcf4d307c190871955f8025 src/util-linux-ng-2.13.0.1.tar.bz2 +424badc1832e4b5291a2ec04e9e244f4 src/util-linux-ng-2.13.1.tar.bz2 850b9ec28d19b25ecf8346f5764d426d src/util-linux-ng-lib.patch.bz2 -0fd557729f2751b6d3a7b9ef8dac1131 src/vblade-15.tgz +d9565df6c06ed577d6afc29a443e8368 src/vblade-16.tgz 821fda8f14d674346b87e3ef9cb96389 src/vim-6.3.tar.bz2 5f0c6060b33956fb16e11a15467dd394 src/vlan.1.9.tar.gz d940bcb5f661430cb34ebe2110c25c13 src/vmbin.tar.bz2 @@ -544,7 +544,7 @@ c2fa9d7e771134ac8c89d56b8197d4ca src/wol-0.7.1.tar.gz 45097f269c7847266e121e4a0f362be9 src/wvdial-1.56.tar.gz eb34544384c951fd14470d583273e02a src/wvstreams-4.3.tar.gz -2bba6d3e4183defacf99e5e8ce805460 src/xfsprogs_2.9.7-1.tar.gz +f32ab3282c3e02ce25128f7a6c2d5157 src/xfsprogs_2.9.8-1.tar.gz 567382d7972613090215c6c54f9b82d9 src/xinetd-2.3.14.tar.gz ab6614c785f5b653fcc69fb9c02058f0 src/xmbmon205.tar.gz 8a852581c831eb6e699a16d741a7ec52 src/yp-tools-2.9.tar.gz |
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv31114/d Modified Files: bridge-utils conntrack-tools cyrus-imapd libnetfilter_conntrack libnfnetlink open-vm-tools squid strongswan vblade Log Message: - massive package update Index: open-vm-tools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/open-vm-tools,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- open-vm-tools 25 Dec 2007 19:10:27 -0000 1.4 +++ open-vm-tools 14 May 2008 11:46:51 -0000 1.5 @@ -27,7 +27,7 @@ case $1 in build ) if [ "$CONFIG_OPEN_VM_TOOLS" = "y" ]; then - CC="gcc -U_FORTIFY_SOURCE -fno-PIE" LDFLAGS=-liconv ./configure --prefix=/usr --without-x || exit 1 + CC="gcc -U_FORTIFY_SOURCE -fno-PIE" LDFLAGS=-liconv ./configure --prefix=/usr --without-x --without-procps || exit 1 make all modules || exit 1 fi ;; Index: vblade =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/vblade,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- vblade 21 Sep 2007 09:20:52 -0000 1.3 +++ vblade 14 May 2008 11:46:51 -0000 1.4 @@ -26,6 +26,7 @@ case $1 in build ) if [ "$CONFIG_VBLADE" = "y" ]; then + patch -p1 < contrib/vblade-*-socketfilter*diff || exit 1 make || exit 1 strip_debug fi Index: conntrack-tools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/conntrack-tools,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- conntrack-tools 29 Mar 2008 13:15:49 -0000 1.3 +++ conntrack-tools 14 May 2008 11:46:51 -0000 1.4 @@ -26,6 +26,7 @@ case $1 in build ) if [ "$CONFIG_CONNTRACKTOOL" = "y" ]; then + ./autogen.sh || exit 1 ./configure --prefix=/usr || exit 1 # -Werror - wherever there's a warning, compilation fails. # Should be fixed in the next releases Index: libnetfilter_conntrack =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libnetfilter_conntrack,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- libnetfilter_conntrack 4 Sep 2007 11:51:18 -0000 1.2 +++ libnetfilter_conntrack 14 May 2008 11:46:51 -0000 1.3 @@ -25,6 +25,7 @@ case $1 in build ) + ./autogen.sh || exit 1 delete_str ./libnetfilter_conntrack.pc.in "^URL: " || exit 1 ./configure --prefix=/usr || exit 1 make $PMAKE all || exit 1 Index: squid =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/squid,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- squid 31 Aug 2007 08:28:24 -0000 1.27 +++ squid 14 May 2008 11:46:51 -0000 1.28 @@ -43,6 +43,8 @@ if [ "$CONFIG_NET_SNMP" = "y" ]; then ENABLE_SNMP="--enable-snmp" fi + # for squid 3.x - don't treat a warning as an error. + replace_str ./configure "-Werror -Wall" "-Wall" ./configure --prefix=/usr --sysconfdir=/etc --bindir=/usr/sbin --libexecdir=/usr/sbin \ --datadir=/usr/share/squid --localstatedir=/var/squid --sharedstatedir=/var/squid \ Index: libnfnetlink =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libnfnetlink,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- libnfnetlink 4 Sep 2007 11:46:21 -0000 1.1 +++ libnfnetlink 14 May 2008 11:46:51 -0000 1.2 @@ -25,6 +25,7 @@ case $1 in build ) + ./autogen.sh || exit 1 delete_str ./libnfnetlink.pc.in "^URL: " || exit 1 ./configure --prefix=/usr || exit 1 make $PMAKE all || exit 1 Index: strongswan =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/strongswan,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- strongswan 23 Mar 2008 10:01:01 -0000 1.3 +++ strongswan 14 May 2008 11:46:51 -0000 1.4 @@ -30,10 +30,14 @@ OPTIONS="$OPTIONS --enable-ldap " fi +if [ "$CONFIG_MYSQL_CLIENT" = "y" ]; then + OPTIONS="$OPTIONS --enable-mysql " +fi + case $1 in build ) if [ "$CONFIG_STRONGSWAN" = "y" ]; then - ./configure --prefix=/usr --sysconfdir=/etc --enable-cisco-quirks $OPTIONS + ./configure --prefix=/usr --sysconfdir=/etc --enable-cisco-quirks --enable-smp $OPTIONS || exit 1 make $PMAKE || exit 1 strip_debug fi Index: cyrus-imapd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cyrus-imapd,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- cyrus-imapd 23 Oct 2007 18:06:29 -0000 1.29 +++ cyrus-imapd 14 May 2008 11:46:51 -0000 1.30 @@ -10,7 +10,7 @@ ### BEGIN INIT INFO # Provides: cyrus-imapd -# Required-Start: $basebuildtools $libs e2fsprogs perl +# Required-Start: $basebuildtools $libs e2fsprogs perl net-snmp # Required-Stop: # Default-Start: 1 2 # Default-Stop: Index: bridge-utils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/bridge-utils,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- bridge-utils 12 Dec 2004 21:48:08 -0000 1.15 +++ bridge-utils 14 May 2008 11:46:50 -0000 1.16 @@ -28,6 +28,7 @@ case $1 in build ) if [ "$CONFIG_BRIDGE_UTILS" = "y" ]; then + autoconf || exit 1 ./configure --prefix=/usr || exit 1 make $PMAKE all|| exit 1 strip_debug |
|
From: Heiko Z. <smi...@us...> - 2008-05-11 14:12:12
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv1622/scripts Modified Files: patch-o-matic Log Message: print patch which is about to be applied so we know which one failed Index: patch-o-matic =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/patch-o-matic,v retrieving revision 1.35 retrieving revision 1.36 diff -u -d -r1.35 -r1.36 --- patch-o-matic 1 Feb 2008 10:19:14 -0000 1.35 +++ patch-o-matic 11 May 2008 14:12:03 -0000 1.36 @@ -35,11 +35,13 @@ if [ "$CONFIG_NF_LAYER7" = "y" ]; then if [ ! -f $KERNEL_DIR/.done_layer7 ]; then + echo applying kernel netfilter layer 7 patch pushd $KERNEL_DIR > /dev/null patch -p1 < ../netfilter-layer7-*/kernel*2.6*layer7-*.patch || exit 1 # patch -p1 < ../netfilter-layer7-*/for_older_kernels/kernel-2.6.20-2.6.21*layer7-*.patch || exit 1 popd > /dev/null + echo applying iptables netfilter layer 7 patch pushd $IPTABLES_DIR > /dev/null # patch -p1 < ../netfilter-layer7-*/iptables-layer7-*.patch || exit 1 patch -p1 < ../netfilter-layer7-*/iptables-1.4*2.6.20forward-layer7*.patch || exit 1 |
|
From: Serge L. <sma...@us...> - 2008-05-04 20:25:42
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv11801/scripts Modified Files: nagios-plugins Log Message: oops.. Index: nagios-plugins =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/nagios-plugins,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- nagios-plugins 4 May 2008 20:22:46 -0000 1.3 +++ nagios-plugins 4 May 2008 20:25:35 -0000 1.4 @@ -31,8 +31,6 @@ bzcat $SRCDIR/nagios-plugin-pgsql_include_for_8.3.patch.bz2 | patch -p1 || exit 1 touch devil-linux-patch.done fi - - fi ./configure --prefix=/usr --libexecdir=/usr/libexec/nagios --disable-rpath || exit 1 make $PMAKE all || exit 1 strip_debug |
|
From: Serge L. <sma...@us...> - 2008-05-04 20:22:49
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv11081 Modified Files: md5sum.lst Log Message: - fixed compile with postgres 8.3.x Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.432 retrieving revision 1.433 diff -u -d -r1.432 -r1.433 --- md5sum.lst 3 May 2008 10:35:18 -0000 1.432 +++ md5sum.lst 4 May 2008 20:22:45 -0000 1.433 @@ -368,6 +368,7 @@ a83dbdbb91267daf73d2297a9c283dd1 src/mysql-5.0.51a.tar.gz 4c3b353bfa94b49a616924cf3f910734 src/nagios-3.0.1.tar.gz 042783a2180a6987e0b403870b3d01f7 src/nagios-plugins-1.4.11.tar.gz +7c1a5cad155dc92a257214c0b67eda63 src/nagios-plugin-pgsql_include_for_8.3.patch.bz2 e9a43273c3592724081a2b9194a5ab56 src/nail-11.10.tar.bz2 f2b3efbf1cf356d736740d531b6b22c4 src/nano-1.2.5.tar.gz eb70e92ceed4a490fb8324eb9dc2d349 src/nasm-0.99.06.tar.bz2 |
|
From: Serge L. <sma...@us...> - 2008-05-04 20:22:49
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv11081/scripts Modified Files: nagios-plugins Log Message: - fixed compile with postgres 8.3.x Index: nagios-plugins =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/nagios-plugins,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- nagios-plugins 20 Aug 2006 19:51:27 -0000 1.2 +++ nagios-plugins 4 May 2008 20:22:46 -0000 1.3 @@ -27,6 +27,12 @@ case $1 in build ) if [ "$CONFIG_NAGIOS" = "y" ]; then + if [ ! -f devil-linux-patch.done ]; then + bzcat $SRCDIR/nagios-plugin-pgsql_include_for_8.3.patch.bz2 | patch -p1 || exit 1 + touch devil-linux-patch.done + fi + + fi ./configure --prefix=/usr --libexecdir=/usr/libexec/nagios --disable-rpath || exit 1 make $PMAKE all || exit 1 strip_debug |
|
From: Serge L. <sma...@us...> - 2008-05-03 10:35:26
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv12996 Modified Files: md5sum.lst Log Message: - added the patch to show uptime correctly Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.431 retrieving revision 1.432 diff -u -d -r1.431 -r1.432 --- md5sum.lst 2 May 2008 14:33:18 -0000 1.431 +++ md5sum.lst 3 May 2008 10:35:18 -0000 1.432 @@ -437,6 +437,7 @@ b38df9c431041922c997c1148bedf591 src/pptpd-1.3.4.tar.gz 1dfcb6e8aeb44a78d4bba53a99d7957c src/prism54-1.1.tar.bz2 134704f59307cfd3d6b1270a1aab62a4 src/prism54firmware.tar.bz2 +71765a682f2b1993a474a3afc7ec29fd src/procinfo-18.patches.bz2 27658d0a69040aca05a65b9888599d50 src/procinfo-18.tar.gz 1678ea99b973eb77eda4ecf6acae53f1 src/procmail-3.22.tar.gz f490bca772b16472962c7b9f23b1e97d src/procps-3.2.7.tar.gz |
|
From: Serge L. <sma...@us...> - 2008-05-03 10:35:25
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv12996/scripts Modified Files: procinfo Log Message: - added the patch to show uptime correctly Index: procinfo =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/procinfo,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- procinfo 18 Apr 2008 14:18:37 -0000 1.9 +++ procinfo 3 May 2008 10:35:19 -0000 1.10 @@ -25,6 +25,10 @@ case $1 in build ) + if [ ! -f devil-linux-procinfo-patches.done ]; then + bzcat $SRCDIR/procinfo-*.patches.bz2 | patch -p1 || exit 1 + touch devil-linux-procinfo-patches.done + fi make $PMAKE LDLIBS=-lncurses || exit 1 strip_debug ;; @@ -32,7 +36,7 @@ install ) cp procinfo $CDDIR/bin || exit 1 copy_man - echo "#8:2345:respawn:env - TERM=linux /bin/procinfo -f -F /dev/tty8" >> $ETCDIR/etc/inittab + echo "8:2345:respawn:env - TERM=linux /bin/procinfo -f -F /dev/tty8" >> $ETCDIR/etc/inittab ;; * ) |
|
From: Serge L. <sma...@us...> - 2008-05-02 14:33:24
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv4226 Modified Files: md5sum.lst CHANGES Log Message: - updated aoe6 to .60 - updated iproute2 to 2.6.25 - updated kernel to 2.6.24.6 - updated postgresql to 8.3.1 - updated rsync to 3.0.2 - updated smartmontools to 5.38 - updated tar to 1.20 - updated wget to 1.11.2 Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.430 retrieving revision 1.431 diff -u -d -r1.430 -r1.431 --- md5sum.lst 17 Apr 2008 12:22:32 -0000 1.430 +++ md5sum.lst 2 May 2008 14:33:18 -0000 1.431 @@ -100,7 +100,7 @@ a2bc99ac9896a3e060da1d45533198c7 src/alsa-tools-1.0.2.tar.bz2 f1742e00052f01a00fca881d796e6bf4 src/alsa-utils-1.0.2.tar.bz2 a5566c15dbae1f5c86a08482eb405725 src/alsaplayer-0.99.76.tar.bz2 -4189cb91e526f537010a7d2233f9b54e src/aoe6-59.tar.gz +697cd50030babdd0161146ee83702f9a src/aoe6-60.tar.gz d2e710176430a28d624500e145d9ffe3 src/apcupsd-3.12.1.tar.gz c74dd987ae8006d5a60f2464cedb2b94 src/arping-2.06.tar.gz 9ecd00db892737431b0e524f3e52e19e src/arpwatch.tar.gz @@ -262,7 +262,7 @@ 57035039daddd242ede848bdcde86ae5 src/insserv-core.diff.bz2 f9ed8a729145ae613b3cdc518f1750e3 src/ipac-ng-1.31.tar.bz2 969832f3a42fc25b44045d73ea483f18 src/ipcalc.tar.bz2 -e4d8352451e61e94f3ee7e6c0cadba4c src/iproute2-2.6.24-rc7.tar.bz2 +5737bade2f5e03fad0e2c81da91e551e src/iproute2-2.6.25.tar.bz2 c0a586924edde35264ecfe94ad1c261f src/ipsec-tools-0.7.tar.bz2 9e17798dfd8ed87c63a1f3498f9fe64d src/ipset-2.3.0-20070828.tar.bz2 90cfa8a554a29b0b859a625e701af2a7 src/iptables-1.4.0.tar.bz2 @@ -411,7 +411,7 @@ a5d27ccbaaad9d9fb254b01a3c12bd06 src/pam_radius-1.3.17.tar.gz 40dd0853d0c1c2cc019d6e2e8146555a src/passwdgen-1.diff.bz2 097cf193d1b040cf0d135945714faa83 src/passwdgen-2.2.tar.gz -508f5aaa99dead9836ff490496a61581 src/patch-2.6.24.4.bz2 +6c93ad526ccb10632ced0d37fa8e0ee5 src/patch-2.6.24.6.bz2 791adb1e8f539fda05bbc90bdb7ee7ab src/patch-o-matic-ng-20080328.tar.bz2 e5f27b822c70f49e492ce21fa7c34d32 src/pax-linux-2.6.24.4-test36.patch.bz2 acf0e368cb33bc2f6a335ba3f5e4fd2b src/pax-utils-0.1.15.tar.bz2 @@ -429,7 +429,7 @@ 781e16ed4487c4caa082c6fef09ead4f src/portmap_5.orig.tar.gz 4bcce061d059d69f0d77c59dbe4427b4 src/portslave-1.9.11.tar.gz 95a559c509081fdd07d78eafd4f4c3b4 src/postfix-2.5.1.tar.gz -17b9049b4fcad42ee95410833c1db228 src/postgresql-8.2.6.tar.bz2 +a5e0ed6a85b450dc217ec71da93243a7 src/postgresql-8.3.1.tar.bz2 848f6c3cafeb6074ffeb293c3af79b7c src/ppp-2.4.3.tar.gz 162619419f060527d2d94a0e64e21d99 src/ppp-patches.tar.bz2 b47735ba5d6d37dfdbccb85afc044ede src/pptp-1.7.1.tar.gz @@ -460,7 +460,7 @@ 0e32760f498f9cde44081ee6aafc823b src/rp-pppoe-3.8.tar.gz b0c3093d2f0d850760e59ac1db9bf152 src/rpm-4.0.4.tar.gz 841ca303c88f7184cf0aaab07e52dec4 src/rrdtool-1.2.27.tar.gz -996d8d8831dbca17910094e56dcb5942 src/rsync-2.6.9.tar.gz +fd4c5d77d8cb7bb86ab209076fa214d9 src/rsync-3.0.2.tar.gz c5cabb219687c483d259bdb0225e2a57 src/sagator-1.0.0.tar.bz2 fa970fc8b4899f3b6afc09936622f672 src/sagator-libclamav-1.2.3.tar.bz2 cf9fbfbb4215592f9f0e0f8f9d85183d src/sagator-pydspam-0.9.0.tar.bz2 @@ -478,7 +478,7 @@ 0f9a0e14f88f88600f8e7367767421c3 src/shorewall-perl-4.0.10.tar.bz2 d997c041b035c0cd2aa8e50a26093479 src/shorewall-shell-4.0.10.tar.bz2 91a572f80dd5a9af5a0f7f207fd34478 src/siproxd-0.5.13.tar.gz -fc2cb32e926b25afa24f450f9a48fbb1 src/smartmontools-5.26.tar.gz +a282846532ecbd6b4a28072373b3a70b src/smartmontools-5.38.tar.gz 8b46997afd728fbdaafdc9b1d0278b07 src/snort-2.6.1.3.tar.gz eb49bc06ea1a40421b6f1ac9e76d1757 src/squid-2.6.STABLE18.tar.bz2 b6700f59c48fde5ad4d12f871acba93a src/squidGuard-1.2.1.tar.gz @@ -493,7 +493,7 @@ ae48df049aa09bde55d52f3c08aefbac src/syslog-ng-2.0.8.tar.gz 637b7e1e1201b2ebecd6ab8102f19ea7 src/sysstat-8.0.4.tar.bz2 7d5d61c026122ab791ac04c8a84db967 src/sysvinit-2.86.tar.gz -bcc2e19b19823b9ab68c94586067a792 src/tar-1.19.tar.bz2 +1a7e17f27abf583b3b0bc059a827e68b src/tar-1.20.tar.bz2 1176b5a45e34823ae1d95621449b4baf src/tcp_wrappers-7.6-gcc34-1.patch.bz2 eec4e5d6cda55464970a3157eb3bc534 src/tcp_wrappers_7.6.diff.gz e6fa25f71226d090f34de3f6b122fb5a src/tcp_wrappers_7.6.tar.gz @@ -535,7 +535,7 @@ d3d8bc4d58886498a1c338670eab9315 src/vtun-3.0.2.tar.gz ba97ddce396bfccd8d409bc3141d7ef4 src/watchdog_5.3.1.tar.gz 26d0a3c142423678daed2d6f579525d8 src/webalizer-2.01-10-src.tar.bz2 -3fda0bab6a883a5f6599d2da58765f93 src/wget-1.11.1.tar.bz2 +730d2687231934f51e47f6f85260b2d3 src/wget-1.11.2.tar.bz2 3897f2a9d0c53a166ba68be9c21353a6 src/which-2.14.tar.gz 059286b299089f14987bb60c85e96a4b src/whois_4.7.15.tar.gz e06c222e186f7cc013fd272d023710cb src/wireless_tools.29.tar.gz Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1203 retrieving revision 1.1204 diff -u -d -r1.1203 -r1.1204 --- CHANGES 1 May 2008 14:35:00 -0000 1.1203 +++ CHANGES 2 May 2008 14:33:18 -0000 1.1204 @@ -22,6 +22,14 @@ # 1.3.5 +- updated aoe6 to .60 (sl) +- updated iproute2 to 2.6.25 (sl) +- updated kernel to 2.6.24.6 (sl) +- updated postgresql to 8.3.1 (sl) +- updated rsync to 3.0.2 (sl) +- updated smartmontools to 5.38 (sl) +- updated tar to 1.20 (sl) +- updated wget to 1.11.2 (sl) - added 1280x1024 & 1600x1200 options to boot menu (bs) - changed default boot mode on server release to 1024x768 (bs) - changed save-config to optionally delete pre-aufs config (bs) |
|
From: Bruce S. <bl...@us...> - 2008-05-01 20:46:33
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv28784/scripts Modified Files: stunnel Log Message: stunnel improvements Index: stunnel =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/stunnel,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- stunnel 20 Jul 2005 20:31:03 -0000 1.14 +++ stunnel 1 May 2008 20:46:29 -0000 1.15 @@ -36,7 +36,7 @@ #fi #KDIR=$(find_src_dir linux) #replace_str Makefile /usr/src/linux $KDIR - ./configure --prefix=/usr $OPT_FLAGS || exit 1 + ./configure --prefix=/ $OPT_FLAGS || exit 1 yes "" | make $PMAKE all || exit 1 strip_debug fi @@ -46,8 +46,15 @@ if [ "$CONFIG_STUNNEL" = "y" ]; then mkdir -p $CDDIR/usr/sbin || exit 1 mkdir -p $CDDIR/usr/lib || exit 1 + mkdir -p $ETCDIR/etc/stunnel || exit 1 cp -p src/stunnel $CDDIR/usr/sbin/ || exit 1 + cp -p $MYDIR/scripts/stunnel $ETCDIR/etc/init.d || exit 1 + cp -p tools/stunnel.c* $ETCDIR/etc/stunnel || exit 1 copy_man + echo "# Start $MYNAME?" >> $CONFIGFILE + echo "START_$MYNAME=no" >> $CONFIGFILE + echo >> $CONFIGFILE + echo "HELP_$MYNAME=\"Universal SSL Wrapper\"" >> $SOFTWAREHELP fi ;; |
|
From: Bruce S. <bl...@us...> - 2008-05-01 20:16:06
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv17519 Added Files: stunnel Log Message: add stunnel init script --- NEW FILE: stunnel --- #!/bin/bash # # $Source: /cvsroot/devil-linux/build/scripts/scripts/stunnel,v $ # $Revision: 1.1 $ # $Date: 2008/05/01 20:16:00 $ # # http://www.devil-linux.org # ### BEGIN INIT INFO # Provides: stunnel # Required-Start: $network $syslog $named # Required-Stop: $network $syslog $named # Default-Start: # Default-Stop: # Description: starts stunnel ### END INIT INFO # settings source /etc/sysconfig/config # parameters NAME="stunnel service" CONFIGNAME=STUNNEL DAEMON=/usr/sbin/stunnel PARAMETER=/etc/stunnel/stunnel.conf # 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: " loadproc $DAEMON $PARAMETER ;; 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: Heiko Z. <smi...@us...> - 2008-05-01 20:14:37
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv17136 Modified Files: grsecurity Log Message: make sure aufs compiles Index: grsecurity =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/grsecurity,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- grsecurity 19 Dec 2007 16:41:55 -0000 1.34 +++ grsecurity 1 May 2008 20:14:33 -0000 1.35 @@ -43,6 +43,11 @@ cd $GRADMDIR || exit 1 make $PMAKE all || exit 1 strip_debug + + # re-read the config to get the new kernel version + source $MYDIR/settings + mkdir -p /lib/modules/$KERNELVERSION + ln -sf $KERNELDIR /lib/modules/$KERNELVERSION/build || exit 1 fi ;; |
|
From: Bruce S. <bl...@us...> - 2008-05-01 20:13:35
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv16772 Modified Files: dbus Log Message: Fix insserv error Index: dbus =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/dbus,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- dbus 21 Mar 2007 13:34:34 -0000 1.1 +++ dbus 1 May 2008 20:13:29 -0000 1.2 @@ -8,12 +8,12 @@ # ### BEGIN INIT INFO -# Provides: skeleton +# Provides: dbus # Required-Start: $network $syslog $named # Required-Stop: $network $syslog $named # Default-Start: # Default-Stop: -# Description: starts something +# Description: starts dbus ### END INIT INFO # settings |
|
From: Bruce S. <bl...@us...> - 2008-05-01 14:43:25
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv20734/scripts Modified Files: build-iso Log Message: prevent the top logo/banner from partially scrolling off the screen Index: build-iso =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build-iso,v retrieving revision 1.80 retrieving revision 1.81 diff -u -d -r1.80 -r1.81 --- build-iso 1 May 2008 14:35:00 -0000 1.80 +++ build-iso 1 May 2008 14:43:18 -0000 1.81 @@ -261,7 +261,7 @@ # echo -n -e "0fDevil-Linux Version $DL_VERSION_FULL is loading...\r\n\r\n" >> $CDDIR/boot/message # echo -n -e "0fPlease select a boot option:\r\n\r\n" >> $CDDIR/boot/message - echo -n -e "\r\nPlease select a boot option:\r\n\r\n" >> $CDDIR/boot/message + echo -n -e "\r\nPlease select a boot option: (timeout in 5 seconds)\r\n\r\n" >> $CDDIR/boot/message declare -a BOOT_OPTIONS_TEXT declare -a BOOT_OPTIONS_MODE declare -a BOOT_OPTIONS_KERNEL_MODE @@ -299,7 +299,6 @@ echo -n -e "\r\n" >> $CDDIR/boot/message [ -f $CDDIR/boot/memtest ] && echo -n -e " m - MEMTEST86\r\n\r\n" >> $CDDIR/boot/message - echo -n -e "(timeout in 5 seconds)\r\n\r\n" >> $CDDIR/boot/message echo -n -e "Press F1 for help\r\n\r\n" >> $CDDIR/boot/message BOOT_OPTION_RAMDISK=""; |
|
From: Bruce S. <bl...@us...> - 2008-05-01 14:35:06
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv17710 Modified Files: CHANGES Log Message: added 1280x1024 & 1600x1200 options to boot menu changed default boot mode on server release to 1024x768 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1202 retrieving revision 1.1203 diff -u -d -r1.1202 -r1.1203 --- CHANGES 30 Apr 2008 18:09:32 -0000 1.1202 +++ CHANGES 1 May 2008 14:35:00 -0000 1.1203 @@ -22,6 +22,8 @@ # 1.3.5 +- added 1280x1024 & 1600x1200 options to boot menu (bs) +- changed default boot mode on server release to 1024x768 (bs) - changed save-config to optionally delete pre-aufs config (bs) - fixed php file upload bug (bs) - fixed gzip to install missing (zcat, etc.) programs (bs) |