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-06-24 00:33:58
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11721/scripts/scripts Modified Files: alsa-driver Log Message: alsa-driver init script now supports saving/restoring of mixer settings (Heiko / Roland Pabel) Index: alsa-driver =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/alsa-driver,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- alsa-driver 7 Jan 2004 22:27:20 -0000 1.6 +++ alsa-driver 24 Jun 2004 00:33:37 -0000 1.7 @@ -14,6 +14,7 @@ # parameters NAME="alsa drivers" +CONFIGFILE=/etc/asound.state CONFIGNAME=ALSA_DRIVER DAEMON= PARAMETER= @@ -31,6 +32,36 @@ test $link = $base && START=yes test "$START" = "yes" || exit 0 +function restore_mixer() { + echo -n "Restoring state of $NAME: " + # load mixer + if [ -d /proc/asound ]; then + if [ -r $CONFIGFILE ]; then + /sbin/alsactl restore -f $CONFIGFILE + else + echo "No mixer config found, using default. " + /bin/amixer -c0 sset Master,0 80% unmute + /bin/amixer -c0 sset Headphone,0 80% unmute + /bin/amixer -c0 sset PCM,0 60% unmute + echo -en "Use '$0 save' to save your config" + fi + print_status success + else + print_status failure + fi +} + +function store_mixer() { + echo -en "Saving state of $NAME: " + # save mixer + if [ -d /proc/asound ]; then + /sbin/alsactl store -f $CONFIGFILE + print_status success + return; + fi + print_status failure +} + case "$1" in start) echo -en "Loading $NAME: " @@ -38,9 +69,7 @@ modprobe snd-pcm-oss modprobe snd-mixer-oss print_status success - /bin/amixer -c0 sset Master,0 80% unmute - /bin/amixer -c0 sset Headphone,0 80% unmute - /bin/amixer -c0 sset PCM,0 60% unmute + restore_mixer ;; stop) echo -en "UnLoading $NAME: " @@ -58,6 +87,9 @@ rmmod snd-page-alloc print_status success ;; + save) + store_mixer + ;; restart) $0 stop sleep 1 |
From: Heiko Z. <smi...@us...> - 2004-06-24 00:32:54
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11397 Modified Files: Tag: rel-1-2-patches CHANGES Log Message: alsa-driver init script now supports saving/restoring of mixer settings (Heiko / Roland Pabel) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.807.2.10 retrieving revision 1.807.2.11 diff -u -d -r1.807.2.10 -r1.807.2.11 --- CHANGES 23 Jun 2004 23:54:31 -0000 1.807.2.10 +++ CHANGES 24 Jun 2004 00:32:35 -0000 1.807.2.11 @@ -22,6 +22,7 @@ # 1.2b2 +- alsa-driver init script now supports saving/restoring of mixer settings (Heiko / Roland Pabel) - custom-cd now correctly used ziso format (Heiko / Roberto) - updated syslinux to v2.10 - updated sed to v4.1 |
From: Heiko Z. <smi...@us...> - 2004-06-24 00:32:53
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11397/scripts/scripts Modified Files: Tag: rel-1-2-patches alsa-driver Log Message: alsa-driver init script now supports saving/restoring of mixer settings (Heiko / Roland Pabel) Index: alsa-driver =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/alsa-driver,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -u -d -r1.6 -r1.6.2.1 --- alsa-driver 7 Jan 2004 22:27:20 -0000 1.6 +++ alsa-driver 24 Jun 2004 00:32:35 -0000 1.6.2.1 @@ -14,6 +14,7 @@ # parameters NAME="alsa drivers" +CONFIGFILE=/etc/asound.state CONFIGNAME=ALSA_DRIVER DAEMON= PARAMETER= @@ -31,6 +32,36 @@ test $link = $base && START=yes test "$START" = "yes" || exit 0 +function restore_mixer() { + echo -n "Restoring state of $NAME: " + # load mixer + if [ -d /proc/asound ]; then + if [ -r $CONFIGFILE ]; then + /sbin/alsactl restore -f $CONFIGFILE + else + echo "No mixer config found, using default. " + /bin/amixer -c0 sset Master,0 80% unmute + /bin/amixer -c0 sset Headphone,0 80% unmute + /bin/amixer -c0 sset PCM,0 60% unmute + echo -en "Use '$0 save' to save your config" + fi + print_status success + else + print_status failure + fi +} + +function store_mixer() { + echo -en "Saving state of $NAME: " + # save mixer + if [ -d /proc/asound ]; then + /sbin/alsactl store -f $CONFIGFILE + print_status success + return; + fi + print_status failure +} + case "$1" in start) echo -en "Loading $NAME: " @@ -38,9 +69,7 @@ modprobe snd-pcm-oss modprobe snd-mixer-oss print_status success - /bin/amixer -c0 sset Master,0 80% unmute - /bin/amixer -c0 sset Headphone,0 80% unmute - /bin/amixer -c0 sset PCM,0 60% unmute + restore_mixer ;; stop) echo -en "UnLoading $NAME: " @@ -58,6 +87,9 @@ rmmod snd-page-alloc print_status success ;; + save) + store_mixer + ;; restart) $0 stop sleep 1 |
From: Heiko Z. <smi...@us...> - 2004-06-23 23:55:08
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3309/scripts/scripts Modified Files: custom-cd Log Message: custom-cd now correctly used ziso format (Heiko / Roberto) Index: custom-cd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/custom-cd,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- custom-cd 21 Oct 2003 13:13:11 -0000 1.3 +++ custom-cd 23 Jun 2004 23:55:00 -0000 1.4 @@ -114,6 +114,18 @@ rm -fr $TEMP/boot/boot.cat $TEMP/rr_moved cp -a $NEW/* $TEMP +# +mkzftree $TEMP $TEMP.z +cp -fdpR $MP/boot/* $TEMP.z/boot/ +cp -fdpR $NEW/boot/* $TEMP.z/boot/ +cp -fdpR $MP/doc/* $TEMP.z/doc/ +cp -fdpR $NEW/doc/* $TEMP.z/doc/ +cp -fdpR $MP/config/* $TEMP.z/config/ +cp -fdpR $NEW/config/* $TEMP.z/config/ +cp -fdp $MP/* $TEMP.z/ +cp -fdp $NEW/* $TEMP.z/ +# + mkisofs -b boot/isolinux.bin -c boot/boot.cat \ -no-emul-boot -boot-load-size 4 -boot-info-table \ -o $ISO \ @@ -122,9 +134,10 @@ -P "Devil Linux Custom CD" \ -A "Devil-Linux cv$DL_VERSION" \ -iso-level 2 \ - -quiet $TEMP + -quiet -z $TEMP.z echo umount $MP || echo "Cannot unmount $MP" rm -fr $TEMP +rm -fr $TEMP.z echo Your new ISO image has been created: $ISO |
From: Heiko Z. <smi...@us...> - 2004-06-23 23:55:08
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3309 Modified Files: CHANGES Log Message: custom-cd now correctly used ziso format (Heiko / Roberto) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.817 retrieving revision 1.818 diff -u -d -r1.817 -r1.818 --- CHANGES 23 Jun 2004 23:07:57 -0000 1.817 +++ CHANGES 23 Jun 2004 23:55:00 -0000 1.818 @@ -22,6 +22,7 @@ # 1.3.0 +- custom-cd now correctly used ziso format (Heiko / Roberto) - updated syslinux to v2.10 - updated sed to v4.1 - updated pptpd to v1.2.1 |
From: Heiko Z. <smi...@us...> - 2004-06-23 23:54:40
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3266/scripts/scripts Modified Files: Tag: rel-1-2-patches custom-cd Log Message: custom-cd now correctly used ziso format (Heiko / Roberto) Index: custom-cd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/custom-cd,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -u -d -r1.3 -r1.3.2.1 --- custom-cd 21 Oct 2003 13:13:11 -0000 1.3 +++ custom-cd 23 Jun 2004 23:54:32 -0000 1.3.2.1 @@ -114,6 +114,18 @@ rm -fr $TEMP/boot/boot.cat $TEMP/rr_moved cp -a $NEW/* $TEMP +# +mkzftree $TEMP $TEMP.z +cp -fdpR $MP/boot/* $TEMP.z/boot/ +cp -fdpR $NEW/boot/* $TEMP.z/boot/ +cp -fdpR $MP/doc/* $TEMP.z/doc/ +cp -fdpR $NEW/doc/* $TEMP.z/doc/ +cp -fdpR $MP/config/* $TEMP.z/config/ +cp -fdpR $NEW/config/* $TEMP.z/config/ +cp -fdp $MP/* $TEMP.z/ +cp -fdp $NEW/* $TEMP.z/ +# + mkisofs -b boot/isolinux.bin -c boot/boot.cat \ -no-emul-boot -boot-load-size 4 -boot-info-table \ -o $ISO \ @@ -122,9 +134,10 @@ -P "Devil Linux Custom CD" \ -A "Devil-Linux cv$DL_VERSION" \ -iso-level 2 \ - -quiet $TEMP + -quiet -z $TEMP.z echo umount $MP || echo "Cannot unmount $MP" rm -fr $TEMP +rm -fr $TEMP.z echo Your new ISO image has been created: $ISO |
From: Heiko Z. <smi...@us...> - 2004-06-23 23:54:40
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3266 Modified Files: Tag: rel-1-2-patches CHANGES Log Message: custom-cd now correctly used ziso format (Heiko / Roberto) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.807.2.9 retrieving revision 1.807.2.10 diff -u -d -r1.807.2.9 -r1.807.2.10 --- CHANGES 23 Jun 2004 23:07:35 -0000 1.807.2.9 +++ CHANGES 23 Jun 2004 23:54:31 -0000 1.807.2.10 @@ -22,6 +22,7 @@ # 1.2b2 +- custom-cd now correctly used ziso format (Heiko / Roberto) - updated syslinux to v2.10 - updated sed to v4.1 - updated pptpd to v1.2.1 |
From: Heiko Z. <smi...@us...> - 2004-06-23 23:08:05
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26878 Modified Files: CHANGES md5sum.lst Log Message: - updated syslinux to v2.10 - updated sed to v4.1 - updated pptpd to v1.2.1 - updated postfix to v2.1.3 - updated ipac-ng to v1.29 - updated dovecot 0.99.10.6 - updated dnsmasq to v2.9 - updated cyrus-imapd to v2.2.6 - updated sagator to v0.5.0 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.816 retrieving revision 1.817 diff -u -d -r1.816 -r1.817 --- CHANGES 23 Jun 2004 22:29:51 -0000 1.816 +++ CHANGES 23 Jun 2004 23:07:57 -0000 1.817 @@ -22,6 +22,15 @@ # 1.3.0 +- updated syslinux to v2.10 +- updated sed to v4.1 +- updated pptpd to v1.2.1 +- updated postfix to v2.1.3 +- updated ipac-ng to v1.29 +- updated dovecot 0.99.10.6 +- updated dnsmasq to v2.9 +- updated cyrus-imapd to v2.2.6 +- updated sagator to v0.5.0 - removed rpm from standard ISO - hotplug init script can now be disabled (Heiko + Holger Mueller) - heartbeat init script can now be disabled (Heiko + Holger Mueller) Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.109 retrieving revision 1.110 diff -u -d -r1.109 -r1.110 --- md5sum.lst 16 Jun 2004 01:49:20 -0000 1.109 +++ md5sum.lst 23 Jun 2004 23:07:57 -0000 1.110 @@ -47,7 +47,7 @@ 97456d1da7da7140324116fb55b7957e src/cron-3.0.1-suse.tar.bz2 e0eb377840b01e11e5cd008ae9b7d2af src/cutter-1.02.tgz 41396dfe38c3c9f80de98ea53e6d55aa src/cvs-1.12.9.tar.bz2 -ad8e3ca17b04a38c934f8c7a80c8adec src/cyrus-imapd-2.2.5.tar.gz +6b83b27146bea34ad700f0ef4f695be7 src/cyrus-imapd-2.2.6.tar.gz 1eafae95f0289c10f187d8b2bc4032cf src/cyrus-sasl-2.1.18.tar.gz c3effff791f4f1386d00a6a68722a688 src/daemontools-0.76.errno.patch.bz2 0b4c4417aa149c4523a071647ad6778f src/daemontools-0.76.tar.gz @@ -63,10 +63,10 @@ 6976c265fe1e28e3648b390d16934e8b src/djbdns-1.05-ignoreip.patch.bz2 cbdb9f51e0df375f3099a022ef880bdd src/djbdns-1.05.errno.patch.bz2 3147c5cd56832aa3b41955c7a51cbeb2 src/djbdns-1.05.tar.gz -3be23428250d049081364d5b04e819d1 src/dnsmasq-2.8.tar.gz +d3f365eaba2f60b115c97116d382e98c src/dnsmasq-2.9.tar.gz af4d03e85985ab222f2811744b9e06bc src/dosfstools-2.10-llseek.patch.bz2 59a02f311a891af8787c4c9e28c6b89b src/dosfstools_2.10.orig.tar.gz -acda02c8bdcff5e194a8b9227ccb74b5 src/dovecot-0.99.10.5.tar.gz +4f4f61147dc202a05c673a77535e5a46 src/dovecot-0.99.10.6.tar.gz 847918a08443aac122205c122d5c3f98 src/e100-2.3.33.tar.gz 2e8ffe07741aa30a59dab59d1be0dcec src/e1000-5.2.22.tar.gz 8d25ffd60d405ef32d341704a2323807 src/e2fsprogs-1.35.tar.gz @@ -132,7 +132,7 @@ 68ec8cb81ae95d7da2a3b5f501a9488a src/insserv-boot.diff.bz2 7c07ae671bfd83c39bf03cf5d373eb16 src/insserv-core.diff.bz2 3f6554c42665104edb18d26a4de93592 src/insserv-local.diff.bz2 -e3c704779c26ec541bffa7f8f53cf3c9 src/ipac-ng-1.28.tar.bz2 +9de7f44e9b3633da03ebd6b201c4aa4f src/ipac-ng-1.29.tar.bz2 969832f3a42fc25b44045d73ea483f18 src/ipcalc.tar.bz2 ac343233aa5d745341da9e4ec22475af src/iproute_20010824-11.diff.gz b05a4e375d9468be3a1dd3f0e83daee8 src/iproute_20010824.orig.tar.gz @@ -245,7 +245,7 @@ c51bd34197008b128046f0799d2242e4 src/pcre-4.5.tar.bz2 9452d398f0fcd4e5cd7ef6628bc78c6e src/pcwd-1.42.tar.gz 6d2b389f8c6424b7af303f417947714f src/perl-5.8.3.tar.gz -01785d9636bdae51a906320e581b1e6b src/pfixtls-0.8.18-2.1.0-0.9.7d.tar.gz +d3211ebd4d2fbbc9c78235666ed355ac src/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz 79cde484e31871176137eb78014657fa src/php-4.3.6.tar.bz2 a7e4f60a6657dbc434334deb594cc242 src/pkgconfig-0.15.0.tar.gz 734b375abdcc6bf70541d0bef8147449 src/popt-1.6.4.tar.gz @@ -253,13 +253,13 @@ 73f823d66f0e8525b77cb45d94fb90c8 src/portmap_5-2.diff.gz 781e16ed4487c4caa082c6fef09ead4f src/portmap_5.orig.tar.gz c203e22f74bdd968ee11105dd2a80ec0 src/portslave_2002.01.19.tar.gz -fd747b82f949e00040c2f101e1c7a6e4 src/postfix-2.1.1.tar.gz +1f515b0d80cd1f9db0113240bf36f248 src/postfix-2.1.3.tar.gz 82878d6d74c36384af3595d26ed38067 src/postgresql-7.3.4.tar.gz 16169e27a6ba62ed241fef2bc5e3b3d6 src/ppp-cvs-20031002.tar.bz2 d1852b7c8b5dfffa7d978b411ccc03da src/ppp-patches.tar.bz2 b24ca05422c0e62d7a26edbbec604a89 src/pptp-linux-1.3.1.tar.gz 8bf8a24d79f5ae9759e1aacd1a3e98f2 src/pptp-patches.tar.bz2 -2bb10d696b3a4ef7a16dd2ebafbeea39 src/pptpd-1.2.0-b4.tar.gz +067e9474998345485ba1e92cc5ff59c6 src/pptpd-1.2.1.tar.gz 1dfcb6e8aeb44a78d4bba53a99d7957c src/prism54-1.1.tar.bz2 134704f59307cfd3d6b1270a1aab62a4 src/prism54firmware.tar.bz2 27658d0a69040aca05a65b9888599d50 src/procinfo-18.tar.gz @@ -284,12 +284,12 @@ 19fec533ad125b2538f5e27b3be6dfd6 src/rrdtool-1.0.47.tar.gz 013d0387c93bf4db7d06f72e243c6d24 src/rrlogind-sv-1.3.3.tar.gz 3f24bf31aec0a657eb3b6844c3f09f21 src/rsync-2.6.0.tar.gz -6efab0d692023a3a0396d1aa75deaef8 src/sagator-0.4.3.tar.bz2 +e7887b9bb10f3686f7030575108f8b36 src/sagator-0.5.0.tar.bz2 0156265c1e95ac662deef386f615504f src/samba-3.0.4.tar.gz c336057e5409bb5cc77909ef3fbca9cd src/sarg-1.4.1-index.sort.patch.bz2 357f8e175746e19dac4a61f4a2ef0aaf src/sarg-1.4.1.tar.gz ed68ea9b43d9fba0972cb017a24940a1 src/screen-4.0.2.tar.gz -d8fb554bc6577aaedd39b94b3cb3df70 src/sed-4.0.9.tar.gz +d8a08cc12fda1826deb2028dd729e189 src/sed-4.1.tar.gz 952fadd9f76e128ee9a4be350a647713 src/ser-0.8.12_src.tar.gz c4867d72c41564318e0107745eb7a0f2 src/setserial-2.17.tar.gz 876cfee9949b72d58e28b261b9d84059 src/sg3_utils-1.06.tgz @@ -308,7 +308,7 @@ 55d503e5c35bf1ea83d38244e0242aaf src/sudo-1.6.7p5.tar.gz 9248a32e8317cfd0d70bf3f85b7bf7fa src/super-freeswan-1.99.8.tar.gz f587720988bc1670071f31d3694ca0fb src/sysklogd-1.4.1.tar.bz2 -703f11a01acf67a9f83ec082ca395565 src/syslinux-2.09.tar.bz2 +985beccafe98b17f3452713be86c5fa0 src/syslinux-2.10.tar.bz2 ec1d44df8ced4ef2876a5aeae00a7f15 src/syslinux-no_exe.patch.bz2 4befd061adbe33df0cd187faa0372e12 src/syslinux-no_memdisk.patch.bz2 ef6121a305a4f6f6208d909ca41e6624 src/syslog-ng-1.6.4.tar.gz |
From: Heiko Z. <smi...@us...> - 2004-06-23 23:07:50
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26835 Modified Files: Tag: rel-1-2-patches CHANGES md5sum.lst Log Message: - updated syslinux to v2.10 - updated sed to v4.1 - updated pptpd to v1.2.1 - updated postfix to v2.1.3 - updated ipac-ng to v1.29 - updated dovecot 0.99.10.6 - updated dnsmasq to v2.9 - updated cyrus-imapd to v2.2.6 - updated sagator to v0.5.0 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.807.2.8 retrieving revision 1.807.2.9 diff -u -d -r1.807.2.8 -r1.807.2.9 --- CHANGES 23 Jun 2004 22:29:08 -0000 1.807.2.8 +++ CHANGES 23 Jun 2004 23:07:35 -0000 1.807.2.9 @@ -22,6 +22,15 @@ # 1.2b2 +- updated syslinux to v2.10 +- updated sed to v4.1 +- updated pptpd to v1.2.1 +- updated postfix to v2.1.3 +- updated ipac-ng to v1.29 +- updated dovecot 0.99.10.6 +- updated dnsmasq to v2.9 +- updated cyrus-imapd to v2.2.6 +- updated sagator to v0.5.0 - removed rpm from standard ISO - hotplug init script can now be disabled (Heiko + Holger Mueller) - heartbeat init script can now be disabled (Heiko + Holger Mueller) Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.102.2.7 retrieving revision 1.102.2.8 diff -u -d -r1.102.2.7 -r1.102.2.8 --- md5sum.lst 16 Jun 2004 01:47:00 -0000 1.102.2.7 +++ md5sum.lst 23 Jun 2004 23:07:37 -0000 1.102.2.8 @@ -47,7 +47,7 @@ 97456d1da7da7140324116fb55b7957e src/cron-3.0.1-suse.tar.bz2 e0eb377840b01e11e5cd008ae9b7d2af src/cutter-1.02.tgz 41396dfe38c3c9f80de98ea53e6d55aa src/cvs-1.12.9.tar.bz2 -ad8e3ca17b04a38c934f8c7a80c8adec src/cyrus-imapd-2.2.5.tar.gz +6b83b27146bea34ad700f0ef4f695be7 src/cyrus-imapd-2.2.6.tar.gz 1eafae95f0289c10f187d8b2bc4032cf src/cyrus-sasl-2.1.18.tar.gz c3effff791f4f1386d00a6a68722a688 src/daemontools-0.76.errno.patch.bz2 0b4c4417aa149c4523a071647ad6778f src/daemontools-0.76.tar.gz @@ -63,10 +63,10 @@ 6976c265fe1e28e3648b390d16934e8b src/djbdns-1.05-ignoreip.patch.bz2 cbdb9f51e0df375f3099a022ef880bdd src/djbdns-1.05.errno.patch.bz2 3147c5cd56832aa3b41955c7a51cbeb2 src/djbdns-1.05.tar.gz -3be23428250d049081364d5b04e819d1 src/dnsmasq-2.8.tar.gz +d3f365eaba2f60b115c97116d382e98c src/dnsmasq-2.9.tar.gz af4d03e85985ab222f2811744b9e06bc src/dosfstools-2.10-llseek.patch.bz2 59a02f311a891af8787c4c9e28c6b89b src/dosfstools_2.10.orig.tar.gz -acda02c8bdcff5e194a8b9227ccb74b5 src/dovecot-0.99.10.5.tar.gz +4f4f61147dc202a05c673a77535e5a46 src/dovecot-0.99.10.6.tar.gz 847918a08443aac122205c122d5c3f98 src/e100-2.3.33.tar.gz 2e8ffe07741aa30a59dab59d1be0dcec src/e1000-5.2.22.tar.gz 8d25ffd60d405ef32d341704a2323807 src/e2fsprogs-1.35.tar.gz @@ -132,7 +132,7 @@ 68ec8cb81ae95d7da2a3b5f501a9488a src/insserv-boot.diff.bz2 7c07ae671bfd83c39bf03cf5d373eb16 src/insserv-core.diff.bz2 3f6554c42665104edb18d26a4de93592 src/insserv-local.diff.bz2 -e3c704779c26ec541bffa7f8f53cf3c9 src/ipac-ng-1.28.tar.bz2 +9de7f44e9b3633da03ebd6b201c4aa4f src/ipac-ng-1.29.tar.bz2 969832f3a42fc25b44045d73ea483f18 src/ipcalc.tar.bz2 ac343233aa5d745341da9e4ec22475af src/iproute_20010824-11.diff.gz b05a4e375d9468be3a1dd3f0e83daee8 src/iproute_20010824.orig.tar.gz @@ -245,7 +245,7 @@ c51bd34197008b128046f0799d2242e4 src/pcre-4.5.tar.bz2 9452d398f0fcd4e5cd7ef6628bc78c6e src/pcwd-1.42.tar.gz 6d2b389f8c6424b7af303f417947714f src/perl-5.8.3.tar.gz -01785d9636bdae51a906320e581b1e6b src/pfixtls-0.8.18-2.1.0-0.9.7d.tar.gz +d3211ebd4d2fbbc9c78235666ed355ac src/pfixtls-0.8.18-2.1.3-0.9.7d.tar.gz 79cde484e31871176137eb78014657fa src/php-4.3.6.tar.bz2 a7e4f60a6657dbc434334deb594cc242 src/pkgconfig-0.15.0.tar.gz 734b375abdcc6bf70541d0bef8147449 src/popt-1.6.4.tar.gz @@ -253,13 +253,13 @@ 73f823d66f0e8525b77cb45d94fb90c8 src/portmap_5-2.diff.gz 781e16ed4487c4caa082c6fef09ead4f src/portmap_5.orig.tar.gz c203e22f74bdd968ee11105dd2a80ec0 src/portslave_2002.01.19.tar.gz -fd747b82f949e00040c2f101e1c7a6e4 src/postfix-2.1.1.tar.gz +1f515b0d80cd1f9db0113240bf36f248 src/postfix-2.1.3.tar.gz 82878d6d74c36384af3595d26ed38067 src/postgresql-7.3.4.tar.gz 16169e27a6ba62ed241fef2bc5e3b3d6 src/ppp-cvs-20031002.tar.bz2 d1852b7c8b5dfffa7d978b411ccc03da src/ppp-patches.tar.bz2 b24ca05422c0e62d7a26edbbec604a89 src/pptp-linux-1.3.1.tar.gz 8bf8a24d79f5ae9759e1aacd1a3e98f2 src/pptp-patches.tar.bz2 -2bb10d696b3a4ef7a16dd2ebafbeea39 src/pptpd-1.2.0-b4.tar.gz +067e9474998345485ba1e92cc5ff59c6 src/pptpd-1.2.1.tar.gz 1dfcb6e8aeb44a78d4bba53a99d7957c src/prism54-1.1.tar.bz2 134704f59307cfd3d6b1270a1aab62a4 src/prism54firmware.tar.bz2 27658d0a69040aca05a65b9888599d50 src/procinfo-18.tar.gz @@ -284,12 +284,12 @@ 19fec533ad125b2538f5e27b3be6dfd6 src/rrdtool-1.0.47.tar.gz 013d0387c93bf4db7d06f72e243c6d24 src/rrlogind-sv-1.3.3.tar.gz 3f24bf31aec0a657eb3b6844c3f09f21 src/rsync-2.6.0.tar.gz -6efab0d692023a3a0396d1aa75deaef8 src/sagator-0.4.3.tar.bz2 +e7887b9bb10f3686f7030575108f8b36 src/sagator-0.5.0.tar.bz2 0156265c1e95ac662deef386f615504f src/samba-3.0.4.tar.gz c336057e5409bb5cc77909ef3fbca9cd src/sarg-1.4.1-index.sort.patch.bz2 357f8e175746e19dac4a61f4a2ef0aaf src/sarg-1.4.1.tar.gz ed68ea9b43d9fba0972cb017a24940a1 src/screen-4.0.2.tar.gz -d8fb554bc6577aaedd39b94b3cb3df70 src/sed-4.0.9.tar.gz +d8a08cc12fda1826deb2028dd729e189 src/sed-4.1.tar.gz 952fadd9f76e128ee9a4be350a647713 src/ser-0.8.12_src.tar.gz c4867d72c41564318e0107745eb7a0f2 src/setserial-2.17.tar.gz 876cfee9949b72d58e28b261b9d84059 src/sg3_utils-1.06.tgz @@ -308,7 +308,7 @@ 55d503e5c35bf1ea83d38244e0242aaf src/sudo-1.6.7p5.tar.gz 9248a32e8317cfd0d70bf3f85b7bf7fa src/super-freeswan-1.99.8.tar.gz f587720988bc1670071f31d3694ca0fb src/sysklogd-1.4.1.tar.bz2 -703f11a01acf67a9f83ec082ca395565 src/syslinux-2.09.tar.bz2 +985beccafe98b17f3452713be86c5fa0 src/syslinux-2.10.tar.bz2 ec1d44df8ced4ef2876a5aeae00a7f15 src/syslinux-no_exe.patch.bz2 4befd061adbe33df0cd187faa0372e12 src/syslinux-no_memdisk.patch.bz2 ef6121a305a4f6f6208d909ca41e6624 src/syslog-ng-1.6.4.tar.gz |
From: Heiko Z. <smi...@us...> - 2004-06-23 22:30:00
|
Update of /cvsroot/devil-linux/build/scripts/configuration/profiles In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18840/scripts/configuration/profiles Modified Files: default Log Message: removed rpm from standard ISO Index: default =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/default,v retrieving revision 1.32 retrieving revision 1.33 diff -u -d -r1.32 -r1.33 --- default 7 Jun 2004 19:39:47 -0000 1.32 +++ default 23 Jun 2004 22:29:51 -0000 1.33 @@ -120,7 +120,7 @@ CONFIG_RAIDTOOLS=y CONFIG_RAZOR_AGENTS=y CONFIG_RCS=y -CONFIG_RPM=y +CONFIG_RPM=n CONFIG_RPPPPOE=y CONFIG_RRDTOOL=y CONFIG_RRLOGIND=y |
From: Heiko Z. <smi...@us...> - 2004-06-23 22:29:59
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18840 Modified Files: CHANGES Log Message: removed rpm from standard ISO Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.815 retrieving revision 1.816 diff -u -d -r1.815 -r1.816 --- CHANGES 16 Jun 2004 02:29:19 -0000 1.815 +++ CHANGES 23 Jun 2004 22:29:51 -0000 1.816 @@ -22,6 +22,7 @@ # 1.3.0 +- removed rpm from standard ISO - hotplug init script can now be disabled (Heiko + Holger Mueller) - heartbeat init script can now be disabled (Heiko + Holger Mueller) - added missing directory /var/log/samba (Heiko + Holger Mueller) |
From: Heiko Z. <smi...@us...> - 2004-06-23 22:29:17
|
Update of /cvsroot/devil-linux/build/scripts/configuration/profiles In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18688/scripts/configuration/profiles Modified Files: Tag: rel-1-2-patches default Log Message: removed rpm from standard ISO Index: default =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/default,v retrieving revision 1.29 retrieving revision 1.29.2.1 diff -u -d -r1.29 -r1.29.2.1 --- default 20 May 2004 01:14:54 -0000 1.29 +++ default 23 Jun 2004 22:29:09 -0000 1.29.2.1 @@ -137,7 +137,7 @@ CONFIG_RAIDTOOLS=y CONFIG_RAZOR_AGENTS=y CONFIG_RCS=y -CONFIG_RPM=y +CONFIG_RPM=n CONFIG_RPPPPOE=y CONFIG_RRDTOOL=y CONFIG_RRLOGIND=y |
From: Heiko Z. <smi...@us...> - 2004-06-23 22:29:17
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18688 Modified Files: Tag: rel-1-2-patches CHANGES Log Message: removed rpm from standard ISO Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.807.2.7 retrieving revision 1.807.2.8 diff -u -d -r1.807.2.7 -r1.807.2.8 --- CHANGES 16 Jun 2004 02:29:41 -0000 1.807.2.7 +++ CHANGES 23 Jun 2004 22:29:08 -0000 1.807.2.8 @@ -22,6 +22,7 @@ # 1.2b2 +- removed rpm from standard ISO - hotplug init script can now be disabled (Heiko + Holger Mueller) - heartbeat init script can now be disabled (Heiko + Holger Mueller) - added missing directory /var/log/samba (Heiko + Holger Mueller) |
From: Heiko Z. <smi...@us...> - 2004-06-16 17:13:11
|
Update of /cvsroot/devil-linux/build/docs/documentation In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18202 Modified Files: Tag: rel-1-0-patches documentation.xml Log Message: use correct cvs server name Index: documentation.xml =================================================================== RCS file: /cvsroot/devil-linux/build/docs/documentation/documentation.xml,v retrieving revision 1.43.2.10 retrieving revision 1.43.2.11 diff -u -d -r1.43.2.10 -r1.43.2.11 --- documentation.xml 3 Jan 2004 23:53:38 -0000 1.43.2.10 +++ documentation.xml 16 Jun 2004 17:12:53 -0000 1.43.2.11 @@ -816,13 +816,13 @@ <para>The next step is to get the build system from our Sourceforge CVS Server.</para> <para>The files from our CVS repository can be checked out through anonymous (pserver) CVS with the following instruction set. When prompted for a password for anonymous, simply press the Enter key.</para> <para>Go into your LFS System directory (e.g. <filename>/usr/src/lfssystem</filename>)</para> - <para><command>cvs -d:pserver:ano...@cv...:/cvsroot/devil-linux login </command></para> - <para><command>cvs -z3 -d:pserver:ano...@cv...:/cvsroot/devil-linux co build</command></para> + <para><command>cvs -d:pserver:ano...@cv...:/cvsroot/devil-linux login </command></para> + <para><command>cvs -z3 -d:pserver:ano...@cv...:/cvsroot/devil-linux co build</command></para> <para>You find now the build systetem in the sub directory build/ .</para> <tip> <para>If you don't want to use the latest development version (which is probably not stable or won't even compile), you have to add the -r parameter to the checkout command. You can see the list of available tags when you browse the CVS repository <ulink url="http://cvs.sourceforge.net/viewcvs.py/devil-linux/build/">http://cvs.sourceforge.net/viewcvs.py/devil-linux/build/</ulink>.</para> <para>To get i.e. the stable 1.0.x release, use the following command:</para> - <para><command moreinfo="none">cvs -z3 -d:pserver:ano...@cv...:/cvsroot/devil-linux co -r rel-1-0-patches build</command></para> + <para><command moreinfo="none">cvs -z3 -d:pserver:ano...@cv...:/cvsroot/devil-linux co -r rel-1-0-patches build</command></para> </tip> </sect3> <sect3> |
From: Heiko Z. <smi...@us...> - 2004-06-16 14:19:33
|
Update of /cvsroot/devil-linux/build/config/etc/init.d In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14717 Modified Files: jail Log Message: minor fix Index: jail =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/jail,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- jail 16 Jun 2004 01:49:21 -0000 1.28 +++ jail 16 Jun 2004 14:19:24 -0000 1.29 @@ -207,7 +207,7 @@ ln -sf $PARAM $JAILDIR$PARAM ;; LINKROOT ) - ln -sf / $JAILDIR$PARAM + ln -sfn / $JAILDIR$PARAM ;; MKDIR ) mkdir -p $JAILDIR/$PARAM |
From: Heiko Z. <smi...@us...> - 2004-06-16 14:19:10
|
Update of /cvsroot/devil-linux/build/config/etc/init.d In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14183 Modified Files: Tag: rel-1-2-patches jail Log Message: minor fix Index: jail =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/jail,v retrieving revision 1.27.2.1 retrieving revision 1.27.2.2 diff -u -d -r1.27.2.1 -r1.27.2.2 --- jail 16 Jun 2004 01:34:26 -0000 1.27.2.1 +++ jail 16 Jun 2004 14:19:00 -0000 1.27.2.2 @@ -207,7 +207,7 @@ ln -sf $PARAM $JAILDIR$PARAM ;; LINKROOT ) - ln -sf / $JAILDIR$PARAM + ln -sfn / $JAILDIR$PARAM ;; MKDIR ) mkdir -p $JAILDIR/$PARAM |
From: Heiko Z. <smi...@us...> - 2004-06-16 02:29:52
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20833/scripts/scripts Modified Files: Tag: rel-1-2-patches ez-ipupdate hotplug postgresql Added Files: Tag: rel-1-2-patches heartbeat Log Message: - hotplug init script can now be disabled (Heiko + Holger Mueller) - heartbeat init script can now be disabled (Heiko + Holger Mueller) - added missing directory /var/log/samba (Heiko + Holger Mueller) - postgresql: fixed problem if you move the PGDATA dir to another location (Heiko + Holger Mueller) - ez-ipupdate: fixed typo, should be started as daemon and after named/dnsmasq (Heiko + Holger Mueller) --- NEW FILE: heartbeat --- #!/bin/sh # # $Id: heartbeat,v 1.1.2.1 2004/06/16 02:29:42 smiley73 Exp $ # # heartbeat Start high-availability services # # Author: Alan Robertson <al...@un...> # # This script works correctly under SuSE, Debian, # Conectiva, Red Hat and a few others. Please let me know if it # doesn't work under your distribution, and we'll fix it. # We don't hate anyone, and like for everyone to use # our software, no matter what OS or distribution you're using. # # chkconfig: 2345 75 05 # description: Startup script high-availability services. # processname: heartbeat # pidfile: /var/run/heartbeat.pid # config: /etc/ha.d/ha.cf # ### BEGIN INIT INFO # Description: heartbeat is a basic high-availability subsystem. # It will start services at initialization, and when machines go up # or down. This version will also perform IP address takeover using # gratuitous ARPs. It works correctly for a 2-node configuration, # and is extensible to larger configurations. # # It implements the following kinds of heartbeats: # - Bidirectional Serial Rings ("raw" serial ports) # - UDP/IP broadcast (ethernet, etc) # - UDP/IP multicast (ethernet, etc) # - Unicast heartbeats # - "ping" heartbeats (for routers, switches, etc.) # (to be used for breaking ties in 2-node systems # and monitoring networking availability) # # Short-Description: High-availability services. # Required-Start: $network $time $syslog # Required-Stop: $network $time $syslog # Default-Start: 3 5 # Default-Stop: 0 6 ### END INIT INFO ############################################################################## ### BEGIN added by Holger Mueller # settings source /etc/sysconfig/config # parameters CONFIGNAME=HEARTBEAT 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 ### END added by Holger Mueller ############################################################################## HA_DIR=/etc/ha.d; export HA_DIR CONFIG=$HA_DIR/ha.cf . $HA_DIR/shellfuncs LOCKDIR=/var/lock/subsys RUNDIR=/var/run if [ -r /etc/SuSE-release ] then # rc.status is new since SuSE 7.0 [ -r /etc/rc.status ] && . /etc/rc.status [ -r /etc/rc.config ] && . /etc/rc.config # Determine the base and follow a runlevel link name. base=${0##*/} link=${base#*[SK][0-9][0-9]} fi if [ -z "$rc_done" ] then rc_done="Done." rc_failed="Failed." rc_skipped="Skipped." fi # exec 2>>/var/log/ha-debug # This should probably be it's own autoconf parameter # because RH has moved it from time to time... # 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` # Set this to a 1 if you want to automatically load kernel modules USE_MODULES=1 [ -x $HA_BIN/heartbeat ] || exit 0 # # Some environments like it if we use their functions... # if [ ! -x $DISTFUNCS ] then # Provide our own versions of these functions status() { $HA_BIN/heartbeat -s } echo_failure() { EchoEsc " Heartbeat failure [rc=$1]. $rc_failed" return $1 } echo_success() { : Cool! It started! EchoEsc "$rc_done" } else . $DISTFUNCS fi # # See if they've configured things yet... # if [ ! -f $CONFIG ] then EchoNoNl "Heartbeat not configured: $CONFIG not found." echo_failure 1 exit 0 fi init_watchdog() { if [ -f /proc/devices -a -x $INSMOD ] then init_watchdog_linux fi } # # Install the softdog module if we need to # init_watchdog_linux() { # # We need to install it if watchdog is specified in $CONFIG, and # /dev/watchdog refers to a softdog device, or it /dev/watchdog # doesn't exist at all. # # If we need /dev/watchdog, then we'll make it if necessary. # # Whatever the user says we should use for watchdog device, that's # what we'll check for, use and create if necessary. If they misspell # it, or don't put it under /dev, so will we. # Hope they do it right :-) # # insmod=no # What do they think /dev/watchdog is named? MISCDEV=`grep ' misc$' /proc/devices | cut -c1-4` MISCDEV=`Echo $MISCDEV` WATCHDEV=`ha_parameter watchdog` WATCHDEV=`Echo $WATCHDEV` if [ "X$WATCHDEV" != X ] then : Watchdog requested by $CONFIG file # # We try and insmod the module if there's no dev or the dev exists # and points to the softdog major device. # if [ ! -c "$WATCHDEV" ] then insmod=yes else case `ls -l "$WATCHDEV" 2>/dev/null` in *$MISCDEV,*) insmod=yes;; *) : "$WATCHDEV isn't a softdog device (wrong major)" ;; esac fi else : No watchdog device specified in $CONFIG file. fi case $insmod in yes) if grep softdog /proc/modules >/dev/null 2>&1 then : softdog already loaded else $INSMOD softdog >/dev/null 2>&1 fi;; esac if [ "X$WATCHDEV" != X -a ! -c "$WATCHDEV" -a $insmod = yes ] then minor=`cat /proc/misc | grep watchdog | cut -c1-4` mknod -m 600 $WATCHDEV c $MISCDEV $minor fi } # init_watchdog_linux() # # Start the heartbeat daemon... # start_heartbeat() { if ERROR=`$HA_BIN/heartbeat 2>&1` then : OK else return $? fi } # # Start Linux-HA # StartHA() { EchoNoNl "Starting High-Availability services: " $HA_BIN/ResourceManager verifyallidle if [ $USE_MODULES = 1 ] then # Create /dev/watchdog and load module if we should init_watchdog fi rm -f $RUNDIR/ppp.d/* if [ -f $HA_DIR/ipresources -a ! -f $HA_DIR/haresources ] then mv $HA_DIR/ipresources $HA_DIR/haresources fi # Start heartbeat daemon if start_heartbeat then echo_success return 0 else RC=$? echo_failure $RC if [ ! -z "$ERROR" ]; then Echo Echo "$ERROR" fi return $RC fi } # # Ask heartbeat to stop. It will give up its resources... # StopHA() { EchoNoNl "Stopping High-Availability services: " if $HA_BIN/heartbeat -k &> /dev/null # Kill it then echo_success return 0 else RC=$? echo_failure $RC return $RC fi } StatusHA() { $HA_BIN/heartbeat -s } StandbyHA() { 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." exit 1;; esac case "$nice_failback" in *off*) echo "nice_failback is disabled. Cannot enter standby." exit 1;; esac case "${auto_failback}${nice_failback}" in "") echo "auto_failback defaulted to legacy. Cannot enter standby." exit 1;; esac echo "auto_failback: $auto_failback" if StatusHA >/dev/null 2>&1 then EchoNoNl "Attempting to enter standby mode" if $HA_BIN/hb_standby then # It's impossible to tell how long this will take. echo_success else echo_failure $? fi else Echo "Heartbeat is not currently running." exit 1 fi } # # Ask heartbeat to restart. It will *keep* its resources # ReloadHA() { EchoNoNl "Reloading High-Availability services: " if $HA_BIN/heartbeat -r # Restart, and keep your resources then echo_success return 0 else RC=$? echo_failure $RC return $RC fi } RunStartStop() { # Run pre-startup script if it exists if [ -f $HA_DIR/resource.d/startstop ] then $HA_DIR/resource.d/startstop "$@" fi } RC=0 # See how we were called. case "$1" in start) RunStartStop pre-start StartHA RC=$? Echo if [ $RC -eq 0 ] then [ ! -d $LOCKDIR ] && mkdir -p $LOCKDIR touch $LOCKDIR/$SUBSYS fi RunStartStop post-start $RC ;; standby) StandbyHA RC=$?;; status) StatusHA RC=$?;; stop) RunStartStop "pre-stop" StopHA RC=$? Echo if [ $RC -eq 0 ] then rm -f $LOCKDIR/$SUBSYS fi RunStartStop post-stop $RC ;; restart) sleeptime=`ha_parameter deadtime` StopHA Echo EchoNoNl Waiting to allow resource takeover to complete: sleep $sleeptime sleep 10 # allow resource takeover to complete (hopefully). echo_success Echo StartHA Echo ;; force-reload|reload) ReloadHA Echo RC=$? ;; *) Echo "Usage: $0 {start|stop|status|restart|reload|force-reload}" exit 1 esac exit $RC # # # $Log: heartbeat,v $ # Revision 1.1.2.1 2004/06/16 02:29:42 smiley73 # - hotplug init script can now be disabled (Heiko + Holger Mueller) # - heartbeat init script can now be disabled (Heiko + Holger Mueller) # - added missing directory /var/log/samba (Heiko + Holger Mueller) # - postgresql: fixed problem if you move the PGDATA dir to another location # (Heiko + Holger Mueller) # - ez-ipupdate: fixed typo, should be started as daemon and after # named/dnsmasq (Heiko + Holger Mueller) # # 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... # # Index: postgresql =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/postgresql,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -u -d -r1.1 -r1.1.2.1 --- postgresql 14 Apr 2004 20:50:30 -0000 1.1 +++ postgresql 16 Jun 2004 02:29:42 -0000 1.1.2.1 @@ -21,8 +21,9 @@ # parameters NAME="POSTGRESQL Server" -CONFIGNAME=POSTGRESQL -export PGDATA=/var/pgsql/data +CONFIGNAME=POSTGRES +PGDIR=/var/pgsql +export PGDATA=$PGDIR/data DAEMON=/usr/bin/postmaster PIDFILE=$PGDATA/postmaster.pid @@ -56,7 +57,7 @@ if [ ! -d $PGDATA ]; then echo -n "Initializing Database: " mkdir -p $PGDATA - chown -R postgres:postgres /var/pgsql + chown -R postgres:postgres $PGDIR su - postgres /usr/bin/initdb -D $PGDATA > /dev/null 2>&1 if [ -f $PGDATA/PG_VERSION ]; then print_status success Index: hotplug =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/hotplug,v retrieving revision 1.4 retrieving revision 1.4.4.1 diff -u -d -r1.4 -r1.4.4.1 --- hotplug 31 May 2003 21:24:03 -0000 1.4 +++ hotplug 16 Jun 2004 02:29:42 -0000 1.4.4.1 @@ -23,6 +23,22 @@ # Description: Hotplug for USB/PCI/Firewire ### END INIT INFO +# settings +source /etc/sysconfig/config + +# parameters +CONFIGNAME=HOTPLUG + +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 + # source function library source /etc/init.d/functions Index: ez-ipupdate =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/ez-ipupdate,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -u -d -r1.1 -r1.1.2.1 --- ez-ipupdate 14 Apr 2004 23:36:06 -0000 1.1 +++ ez-ipupdate 16 Jun 2004 02:29:42 -0000 1.1.2.1 @@ -2,7 +2,7 @@ ### BEGIN INIT INFO # Provides: ez-ipupdate -# Required-Start: $network $syslog +# Required-Start: $network $syslog $named # Required-Stop: $network $syslog # Default-Start: # Default-Stop: @@ -14,10 +14,10 @@ # parameters NAME="EZ-ipupdate dynamic DNS update service" -CONFIGNAME=EZIP_UPDATE +CONFIGNAME=EZ_IPUPDATE DAEMON=/usr/bin/ez-ipupdate CONFIGFILE="/etc/ez-ipupdate/ez-ipupdate.conf" -PARAMETER="-c $CONFIGFILE -F /var/run/ez-ipupdate.pid" +PARAMETER="-d -c $CONFIGFILE -F /var/run/ez-ipupdate.pid" # source function library source /etc/init.d/functions |
From: Heiko Z. <smi...@us...> - 2004-06-16 02:29:51
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20833/scripts Modified Files: Tag: rel-1-2-patches heartbeat hotplug samba Log Message: - hotplug init script can now be disabled (Heiko + Holger Mueller) - heartbeat init script can now be disabled (Heiko + Holger Mueller) - added missing directory /var/log/samba (Heiko + Holger Mueller) - postgresql: fixed problem if you move the PGDATA dir to another location (Heiko + Holger Mueller) - ez-ipupdate: fixed typo, should be started as daemon and after named/dnsmasq (Heiko + Holger Mueller) Index: heartbeat =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/heartbeat,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -u -d -r1.3 -r1.3.2.1 --- heartbeat 5 Mar 2004 01:55:22 -0000 1.3 +++ heartbeat 16 Jun 2004 02:29:42 -0000 1.3.2.1 @@ -53,6 +53,13 @@ mkdir -p $CDDIR/var/lib/heartbeat || exit 1 rm -rf $WORKDIR/tmp || exit 1 + + cp -dp $MYDIR/scripts/heartbeat $ETCDIR/etc/init.d/ || exit 1 + + echo "# Start $MYNAME?" >> $CONFIGFILE + echo "START_$MYNAME=no" >> $CONFIGFILE + echo >> $CONFIGFILE + echo "HELP_$MYNAME=\"$MYNAME is to control failover servers\"" >> $SOFTWAREHELP fi ;; Index: samba =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/samba,v retrieving revision 1.24 retrieving revision 1.24.2.1 diff -u -d -r1.24 -r1.24.2.1 --- samba 1 Feb 2004 15:00:55 -0000 1.24 +++ samba 16 Jun 2004 02:29:42 -0000 1.24.2.1 @@ -58,7 +58,8 @@ mkdir -p $CDDIR/var/lock/samba || exit 1 copy_files $WORKDIR/tmp/usr $CDDIR/ || exit 1 rm -rf $WORKDIR/tmp || exit 1 - mkdir -p $CDDIR/lib + mkdir -p $CDDIR/lib || exit 1 + mkdir -p $CDDIR/var/log/samba || exit 1 cp nsswitch/libnss_winbind.so $CDDIR/lib || exit 1 ln -sf libnss_winbind.so $CDDIR/lib/libnss_winbind.so.2 || exit 1 Index: hotplug =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/hotplug,v retrieving revision 1.10 retrieving revision 1.10.2.1 diff -u -d -r1.10 -r1.10.2.1 --- hotplug 11 Jan 2004 14:43:04 -0000 1.10 +++ hotplug 16 Jun 2004 02:29:42 -0000 1.10.2.1 @@ -43,6 +43,11 @@ cp -dpR ./sbin/* $CDDIR/sbin/ || exit 1 cp -p $MYDIR/scripts/hotplug $ETCDIR/etc/init.d/ || exit 1 + echo "# Start $MYNAME?" >> $CONFIGFILE + echo "START_$MYNAME=no" >> $CONFIGFILE + echo >> $CONFIGFILE + echo "HELP_$MYNAME=\"$MYNAME automatically uses hotplug devices\"" >> $SOFTWAREHELP + fi ;; * ) |
From: Heiko Z. <smi...@us...> - 2004-06-16 02:29:51
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20833/scripts/config Modified Files: Tag: rel-1-2-patches insserv.conf Log Message: - hotplug init script can now be disabled (Heiko + Holger Mueller) - heartbeat init script can now be disabled (Heiko + Holger Mueller) - added missing directory /var/log/samba (Heiko + Holger Mueller) - postgresql: fixed problem if you move the PGDATA dir to another location (Heiko + Holger Mueller) - ez-ipupdate: fixed typo, should be started as daemon and after named/dnsmasq (Heiko + Holger Mueller) Index: insserv.conf =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/insserv.conf,v retrieving revision 1.5 retrieving revision 1.5.4.1 diff -u -d -r1.5 -r1.5.4.1 --- insserv.conf 4 Oct 2003 00:51:58 -0000 1.5 +++ insserv.conf 16 Jun 2004 02:29:42 -0000 1.5.4.1 @@ -11,7 +11,7 @@ # # Named is operational # -$named named +$named named dnsmasq # # All remote filesystems are mounted (note in some cases /usr may |
From: Heiko Z. <smi...@us...> - 2004-06-16 02:29:50
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20833 Modified Files: Tag: rel-1-2-patches CHANGES Log Message: - hotplug init script can now be disabled (Heiko + Holger Mueller) - heartbeat init script can now be disabled (Heiko + Holger Mueller) - added missing directory /var/log/samba (Heiko + Holger Mueller) - postgresql: fixed problem if you move the PGDATA dir to another location (Heiko + Holger Mueller) - ez-ipupdate: fixed typo, should be started as daemon and after named/dnsmasq (Heiko + Holger Mueller) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.807.2.6 retrieving revision 1.807.2.7 diff -u -d -r1.807.2.6 -r1.807.2.7 --- CHANGES 16 Jun 2004 01:47:00 -0000 1.807.2.6 +++ CHANGES 16 Jun 2004 02:29:41 -0000 1.807.2.7 @@ -22,7 +22,12 @@ # 1.2b2 -- added traceroute fix for -s parameter +- hotplug init script can now be disabled (Heiko + Holger Mueller) +- heartbeat init script can now be disabled (Heiko + Holger Mueller) +- added missing directory /var/log/samba (Heiko + Holger Mueller) +- postgresql: fixed problem if you move the PGDATA dir to another location (Heiko + Holger Mueller) +- ez-ipupdate: fixed typo, should be started as daemon and after named/dnsmasq (Heiko + Holger Mueller) +- added traceroute fix for -s parameter (Heiko + Peter Jannesen) - postfix jail now links /var/spool/postfix correctly (Heiko / Moray McConnachie) - added new command LINKROOT to jail configs (Heiko / Moray McConnachie) - updated openvpn to v1.6.0 |
From: Heiko Z. <smi...@us...> - 2004-06-16 02:29:31
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20274/scripts/scripts Modified Files: ez-ipupdate hotplug postgresql Added Files: heartbeat Log Message: - hotplug init script can now be disabled (Heiko + Holger Mueller) - heartbeat init script can now be disabled (Heiko + Holger Mueller) - added missing directory /var/log/samba (Heiko + Holger Mueller) - postgresql: fixed problem if you move the PGDATA dir to another location (Heiko + Holger Mueller) - ez-ipupdate: fixed typo, should be started as daemon and after named/dnsmasq (Heiko + Holger Mueller) --- NEW FILE: heartbeat --- #!/bin/sh # # $Id: heartbeat,v 1.1 2004/06/16 02:29:20 smiley73 Exp $ # # heartbeat Start high-availability services # # Author: Alan Robertson <al...@un...> # # This script works correctly under SuSE, Debian, # Conectiva, Red Hat and a few others. Please let me know if it # doesn't work under your distribution, and we'll fix it. # We don't hate anyone, and like for everyone to use # our software, no matter what OS or distribution you're using. # # chkconfig: 2345 75 05 # description: Startup script high-availability services. # processname: heartbeat # pidfile: /var/run/heartbeat.pid # config: /etc/ha.d/ha.cf # ### BEGIN INIT INFO # Description: heartbeat is a basic high-availability subsystem. # It will start services at initialization, and when machines go up # or down. This version will also perform IP address takeover using # gratuitous ARPs. It works correctly for a 2-node configuration, # and is extensible to larger configurations. # # It implements the following kinds of heartbeats: # - Bidirectional Serial Rings ("raw" serial ports) # - UDP/IP broadcast (ethernet, etc) # - UDP/IP multicast (ethernet, etc) # - Unicast heartbeats # - "ping" heartbeats (for routers, switches, etc.) # (to be used for breaking ties in 2-node systems # and monitoring networking availability) # # Short-Description: High-availability services. # Required-Start: $network $time $syslog # Required-Stop: $network $time $syslog # Default-Start: 3 5 # Default-Stop: 0 6 ### END INIT INFO ############################################################################## ### BEGIN added by Holger Mueller # settings source /etc/sysconfig/config # parameters CONFIGNAME=HEARTBEAT 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 ### END added by Holger Mueller ############################################################################## HA_DIR=/etc/ha.d; export HA_DIR CONFIG=$HA_DIR/ha.cf . $HA_DIR/shellfuncs LOCKDIR=/var/lock/subsys RUNDIR=/var/run if [ -r /etc/SuSE-release ] then # rc.status is new since SuSE 7.0 [ -r /etc/rc.status ] && . /etc/rc.status [ -r /etc/rc.config ] && . /etc/rc.config # Determine the base and follow a runlevel link name. base=${0##*/} link=${base#*[SK][0-9][0-9]} fi if [ -z "$rc_done" ] then rc_done="Done." rc_failed="Failed." rc_skipped="Skipped." fi # exec 2>>/var/log/ha-debug # This should probably be it's own autoconf parameter # because RH has moved it from time to time... # 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` # Set this to a 1 if you want to automatically load kernel modules USE_MODULES=1 [ -x $HA_BIN/heartbeat ] || exit 0 # # Some environments like it if we use their functions... # if [ ! -x $DISTFUNCS ] then # Provide our own versions of these functions status() { $HA_BIN/heartbeat -s } echo_failure() { EchoEsc " Heartbeat failure [rc=$1]. $rc_failed" return $1 } echo_success() { : Cool! It started! EchoEsc "$rc_done" } else . $DISTFUNCS fi # # See if they've configured things yet... # if [ ! -f $CONFIG ] then EchoNoNl "Heartbeat not configured: $CONFIG not found." echo_failure 1 exit 0 fi init_watchdog() { if [ -f /proc/devices -a -x $INSMOD ] then init_watchdog_linux fi } # # Install the softdog module if we need to # init_watchdog_linux() { # # We need to install it if watchdog is specified in $CONFIG, and # /dev/watchdog refers to a softdog device, or it /dev/watchdog # doesn't exist at all. # # If we need /dev/watchdog, then we'll make it if necessary. # # Whatever the user says we should use for watchdog device, that's # what we'll check for, use and create if necessary. If they misspell # it, or don't put it under /dev, so will we. # Hope they do it right :-) # # insmod=no # What do they think /dev/watchdog is named? MISCDEV=`grep ' misc$' /proc/devices | cut -c1-4` MISCDEV=`Echo $MISCDEV` WATCHDEV=`ha_parameter watchdog` WATCHDEV=`Echo $WATCHDEV` if [ "X$WATCHDEV" != X ] then : Watchdog requested by $CONFIG file # # We try and insmod the module if there's no dev or the dev exists # and points to the softdog major device. # if [ ! -c "$WATCHDEV" ] then insmod=yes else case `ls -l "$WATCHDEV" 2>/dev/null` in *$MISCDEV,*) insmod=yes;; *) : "$WATCHDEV isn't a softdog device (wrong major)" ;; esac fi else : No watchdog device specified in $CONFIG file. fi case $insmod in yes) if grep softdog /proc/modules >/dev/null 2>&1 then : softdog already loaded else $INSMOD softdog >/dev/null 2>&1 fi;; esac if [ "X$WATCHDEV" != X -a ! -c "$WATCHDEV" -a $insmod = yes ] then minor=`cat /proc/misc | grep watchdog | cut -c1-4` mknod -m 600 $WATCHDEV c $MISCDEV $minor fi } # init_watchdog_linux() # # Start the heartbeat daemon... # start_heartbeat() { if ERROR=`$HA_BIN/heartbeat 2>&1` then : OK else return $? fi } # # Start Linux-HA # StartHA() { EchoNoNl "Starting High-Availability services: " $HA_BIN/ResourceManager verifyallidle if [ $USE_MODULES = 1 ] then # Create /dev/watchdog and load module if we should init_watchdog fi rm -f $RUNDIR/ppp.d/* if [ -f $HA_DIR/ipresources -a ! -f $HA_DIR/haresources ] then mv $HA_DIR/ipresources $HA_DIR/haresources fi # Start heartbeat daemon if start_heartbeat then echo_success return 0 else RC=$? echo_failure $RC if [ ! -z "$ERROR" ]; then Echo Echo "$ERROR" fi return $RC fi } # # Ask heartbeat to stop. It will give up its resources... # StopHA() { EchoNoNl "Stopping High-Availability services: " if $HA_BIN/heartbeat -k &> /dev/null # Kill it then echo_success return 0 else RC=$? echo_failure $RC return $RC fi } StatusHA() { $HA_BIN/heartbeat -s } StandbyHA() { 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." exit 1;; esac case "$nice_failback" in *off*) echo "nice_failback is disabled. Cannot enter standby." exit 1;; esac case "${auto_failback}${nice_failback}" in "") echo "auto_failback defaulted to legacy. Cannot enter standby." exit 1;; esac echo "auto_failback: $auto_failback" if StatusHA >/dev/null 2>&1 then EchoNoNl "Attempting to enter standby mode" if $HA_BIN/hb_standby then # It's impossible to tell how long this will take. echo_success else echo_failure $? fi else Echo "Heartbeat is not currently running." exit 1 fi } # # Ask heartbeat to restart. It will *keep* its resources # ReloadHA() { EchoNoNl "Reloading High-Availability services: " if $HA_BIN/heartbeat -r # Restart, and keep your resources then echo_success return 0 else RC=$? echo_failure $RC return $RC fi } RunStartStop() { # Run pre-startup script if it exists if [ -f $HA_DIR/resource.d/startstop ] then $HA_DIR/resource.d/startstop "$@" fi } RC=0 # See how we were called. case "$1" in start) RunStartStop pre-start StartHA RC=$? Echo if [ $RC -eq 0 ] then [ ! -d $LOCKDIR ] && mkdir -p $LOCKDIR touch $LOCKDIR/$SUBSYS fi RunStartStop post-start $RC ;; standby) StandbyHA RC=$?;; status) StatusHA RC=$?;; stop) RunStartStop "pre-stop" StopHA RC=$? Echo if [ $RC -eq 0 ] then rm -f $LOCKDIR/$SUBSYS fi RunStartStop post-stop $RC ;; restart) sleeptime=`ha_parameter deadtime` StopHA Echo EchoNoNl Waiting to allow resource takeover to complete: sleep $sleeptime sleep 10 # allow resource takeover to complete (hopefully). echo_success Echo StartHA Echo ;; force-reload|reload) ReloadHA Echo RC=$? ;; *) Echo "Usage: $0 {start|stop|status|restart|reload|force-reload}" exit 1 esac exit $RC # # # $Log: heartbeat,v $ # Revision 1.1 2004/06/16 02:29:20 smiley73 # - hotplug init script can now be disabled (Heiko + Holger Mueller) # - heartbeat init script can now be disabled (Heiko + Holger Mueller) # - added missing directory /var/log/samba (Heiko + Holger Mueller) # - postgresql: fixed problem if you move the PGDATA dir to another location # (Heiko + Holger Mueller) # - ez-ipupdate: fixed typo, should be started as daemon and after # named/dnsmasq (Heiko + Holger Mueller) # # 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... # # Index: postgresql =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/postgresql,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- postgresql 14 Apr 2004 20:50:30 -0000 1.1 +++ postgresql 16 Jun 2004 02:29:20 -0000 1.2 @@ -21,8 +21,9 @@ # parameters NAME="POSTGRESQL Server" -CONFIGNAME=POSTGRESQL -export PGDATA=/var/pgsql/data +CONFIGNAME=POSTGRES +PGDIR=/var/pgsql +export PGDATA=$PGDIR/data DAEMON=/usr/bin/postmaster PIDFILE=$PGDATA/postmaster.pid @@ -56,7 +57,7 @@ if [ ! -d $PGDATA ]; then echo -n "Initializing Database: " mkdir -p $PGDATA - chown -R postgres:postgres /var/pgsql + chown -R postgres:postgres $PGDIR su - postgres /usr/bin/initdb -D $PGDATA > /dev/null 2>&1 if [ -f $PGDATA/PG_VERSION ]; then print_status success Index: hotplug =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/hotplug,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- hotplug 31 May 2003 21:24:03 -0000 1.4 +++ hotplug 16 Jun 2004 02:29:20 -0000 1.5 @@ -23,6 +23,22 @@ # Description: Hotplug for USB/PCI/Firewire ### END INIT INFO +# settings +source /etc/sysconfig/config + +# parameters +CONFIGNAME=HOTPLUG + +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 + # source function library source /etc/init.d/functions Index: ez-ipupdate =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/ez-ipupdate,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ez-ipupdate 14 Apr 2004 23:36:06 -0000 1.1 +++ ez-ipupdate 16 Jun 2004 02:29:20 -0000 1.2 @@ -2,7 +2,7 @@ ### BEGIN INIT INFO # Provides: ez-ipupdate -# Required-Start: $network $syslog +# Required-Start: $network $syslog $named # Required-Stop: $network $syslog # Default-Start: # Default-Stop: @@ -14,10 +14,10 @@ # parameters NAME="EZ-ipupdate dynamic DNS update service" -CONFIGNAME=EZIP_UPDATE +CONFIGNAME=EZ_IPUPDATE DAEMON=/usr/bin/ez-ipupdate CONFIGFILE="/etc/ez-ipupdate/ez-ipupdate.conf" -PARAMETER="-c $CONFIGFILE -F /var/run/ez-ipupdate.pid" +PARAMETER="-d -c $CONFIGFILE -F /var/run/ez-ipupdate.pid" # source function library source /etc/init.d/functions |
From: Heiko Z. <smi...@us...> - 2004-06-16 02:29:28
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20274/scripts Modified Files: heartbeat hotplug Log Message: - hotplug init script can now be disabled (Heiko + Holger Mueller) - heartbeat init script can now be disabled (Heiko + Holger Mueller) - added missing directory /var/log/samba (Heiko + Holger Mueller) - postgresql: fixed problem if you move the PGDATA dir to another location (Heiko + Holger Mueller) - ez-ipupdate: fixed typo, should be started as daemon and after named/dnsmasq (Heiko + Holger Mueller) Index: heartbeat =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/heartbeat,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- heartbeat 5 Mar 2004 01:55:22 -0000 1.3 +++ heartbeat 16 Jun 2004 02:29:19 -0000 1.4 @@ -53,6 +53,13 @@ mkdir -p $CDDIR/var/lib/heartbeat || exit 1 rm -rf $WORKDIR/tmp || exit 1 + + cp -dp $MYDIR/scripts/heartbeat $ETCDIR/etc/init.d/ || exit 1 + + echo "# Start $MYNAME?" >> $CONFIGFILE + echo "START_$MYNAME=no" >> $CONFIGFILE + echo >> $CONFIGFILE + echo "HELP_$MYNAME=\"$MYNAME is to control failover servers\"" >> $SOFTWAREHELP fi ;; Index: hotplug =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/hotplug,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- hotplug 11 Jan 2004 14:43:04 -0000 1.10 +++ hotplug 16 Jun 2004 02:29:20 -0000 1.11 @@ -43,6 +43,11 @@ cp -dpR ./sbin/* $CDDIR/sbin/ || exit 1 cp -p $MYDIR/scripts/hotplug $ETCDIR/etc/init.d/ || exit 1 + echo "# Start $MYNAME?" >> $CONFIGFILE + echo "START_$MYNAME=no" >> $CONFIGFILE + echo >> $CONFIGFILE + echo "HELP_$MYNAME=\"$MYNAME automatically uses hotplug devices\"" >> $SOFTWAREHELP + fi ;; * ) |
From: Heiko Z. <smi...@us...> - 2004-06-16 02:29:27
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20274 Modified Files: CHANGES Log Message: - hotplug init script can now be disabled (Heiko + Holger Mueller) - heartbeat init script can now be disabled (Heiko + Holger Mueller) - added missing directory /var/log/samba (Heiko + Holger Mueller) - postgresql: fixed problem if you move the PGDATA dir to another location (Heiko + Holger Mueller) - ez-ipupdate: fixed typo, should be started as daemon and after named/dnsmasq (Heiko + Holger Mueller) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.814 retrieving revision 1.815 diff -u -d -r1.814 -r1.815 --- CHANGES 16 Jun 2004 01:49:20 -0000 1.814 +++ CHANGES 16 Jun 2004 02:29:19 -0000 1.815 @@ -22,6 +22,11 @@ # 1.3.0 +- hotplug init script can now be disabled (Heiko + Holger Mueller) +- heartbeat init script can now be disabled (Heiko + Holger Mueller) +- added missing directory /var/log/samba (Heiko + Holger Mueller) +- postgresql: fixed problem if you move the PGDATA dir to another location (Heiko + Holger Mueller) +- ez-ipupdate: fixed typo, should be started as daemon and after named/dnsmasq (Heiko + Holger Mueller) - added traceroute fix for -s parameter - postfix jail now links /var/spool/postfix correctly (Heiko / Moray McConnachie) - added new command LINKROOT to jail configs (Heiko / Moray McConnachie) |
From: Heiko Z. <smi...@us...> - 2004-06-16 01:49:30
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15972/scripts Modified Files: eagle-usb Log Message: - added traceroute fix for -s parameter - postfix jail now links /var/spool/postfix correctly (Heiko / Moray McConnachie) - added new command LINKROOT to jail configs (Heiko / Moray McConnachie) Index: eagle-usb =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/eagle-usb,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- eagle-usb 27 Mar 2004 00:06:30 -0000 1.2 +++ eagle-usb 16 Jun 2004 01:49:21 -0000 1.3 @@ -30,6 +30,7 @@ case $1 in build ) if [ "$CONFIG_EAGLE_USB" = "y" ]; then + ./autogen.sh || exit 1 ./configure --prefix=/usr --with-kernel-src=$KERNELDIR --with-lang=en || exit 1 make || exit 1 fi |
From: Heiko Z. <smi...@us...> - 2004-06-16 01:49:29
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15972 Modified Files: CHANGES md5sum.lst Log Message: - added traceroute fix for -s parameter - postfix jail now links /var/spool/postfix correctly (Heiko / Moray McConnachie) - added new command LINKROOT to jail configs (Heiko / Moray McConnachie) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.813 retrieving revision 1.814 diff -u -d -r1.813 -r1.814 --- CHANGES 14 Jun 2004 19:11:14 -0000 1.813 +++ CHANGES 16 Jun 2004 01:49:20 -0000 1.814 @@ -22,6 +22,24 @@ # 1.3.0 +- added traceroute fix for -s parameter +- postfix jail now links /var/spool/postfix correctly (Heiko / Moray McConnachie) +- added new command LINKROOT to jail configs (Heiko / Moray McConnachie) +- updated openvpn to v1.6.0 +- updated vim to v6.3 +- updated sysstat to v5.0.5 +- updated shfs to v0.35 +- updated mdadm to v1.6.0 +- updated LOOP-AES v2.1b +- updated lm_sensors to v2.8.7 +- updated i2c to v2.8.7 +- updated grub to v0.95 +- updated gnugk to 2.0.8 +- updated eagle-usb to v1.9.8 +- updated cyrus-imapd to v2.2.5 +- updated cvs to v1.12.9 +- updated clamav to v0.73 +- updated bridge-utils to v1.0.4 - use old kernel include files freeramdisk (compile fails otherwise with kernel 2.6.6) - removed cramfs, we use the mkfs.cramfs from util-linux now - set kernel 2.6 as default Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.108 retrieving revision 1.109 diff -u -d -r1.108 -r1.109 --- md5sum.lst 14 Jun 2004 19:11:14 -0000 1.108 +++ md5sum.lst 16 Jun 2004 01:49:20 -0000 1.109 @@ -27,7 +27,7 @@ 3e28792a585e14b57838cd24130a24dd src/binutils-2.14.90.0.8.tar.bz2 42c3a33b645f40197e8f7aca7bd1e913 src/bison-1.875.patch1-bs.bz2 b7f8027b249ebd4dd0cc948943a71af0 src/bison-1.875.tar.bz2 -2570f45a4047ce5c8ee9765f32df7701 src/bridge-utils-0.9.7.tar.bz2 +2cab42847c4654e58c4d0ba114bfe2c2 src/bridge-utils-1.0.4.tar.gz e64c855f4b9e5e8c0645422c34499753 src/busybox-1.00-pre10.tar.bz2 5b8773b4965618279277b05cd811e7b3 src/bzip2-1.0.2.tar.bz2 ffd824f13f99011984399fc3b7526c71 src/camsource-0.7.0.tar.bz2 @@ -35,7 +35,7 @@ c0cdfa2dbe9f4c977b0a71fb08ddff0e src/cdrtools-2.00.3.tar.gz 376ee0327bb6060a03052cdc71bb371f src/chpax-0.6.tar.gz 9d88f2d090fcafcd0e2fa73b018b6e16 src/cipe-1.5.4.tar.gz -096cffd2633cbac5a14b7080b6f67a67 src/clamav-0.71.tar.gz +e96f007e9156b41b5f07707e3b004465 src/clamav-0.73.tar.gz 0c030b9eb8f0d36daae5a32b8920dfd0 src/compartment-1.2-suse-patches.diff.bz2 2df15081f6475e6331cdd813f9d0918c src/compartment-1.2.tar.bz2 80a2ce34e6ac028ffd3f3700c451d1c6 src/compartment-env.diff.bz2 @@ -46,8 +46,8 @@ c53247d26e769d154a810a498dd0322c src/cpqarrayd-2.0.tar.gz 97456d1da7da7140324116fb55b7957e src/cron-3.0.1-suse.tar.bz2 e0eb377840b01e11e5cd008ae9b7d2af src/cutter-1.02.tgz -d320e4429755019e5058e726de753472 src/cvs-1.12.8.tar.bz2 -50831a41ba0121754431e8507887d511 src/cyrus-imapd-2.2.4.tar.gz +41396dfe38c3c9f80de98ea53e6d55aa src/cvs-1.12.9.tar.bz2 +ad8e3ca17b04a38c934f8c7a80c8adec src/cyrus-imapd-2.2.5.tar.gz 1eafae95f0289c10f187d8b2bc4032cf src/cyrus-sasl-2.1.18.tar.gz c3effff791f4f1386d00a6a68722a688 src/daemontools-0.76.errno.patch.bz2 0b4c4417aa149c4523a071647ad6778f src/daemontools-0.76.tar.gz @@ -70,7 +70,7 @@ 847918a08443aac122205c122d5c3f98 src/e100-2.3.33.tar.gz 2e8ffe07741aa30a59dab59d1be0dcec src/e1000-5.2.22.tar.gz 8d25ffd60d405ef32d341704a2323807 src/e2fsprogs-1.35.tar.gz -d2d94f396132e34417fa1b26bcde7287 src/eagle-usb-1.9.6.tar.bz2 +2545f60f436a511039456b385a5987b0 src/eagle-usb-1.9.8.tar.bz2 4f7f3d675396366caaf0f3931fb20216 src/ebtables-brnf-6_vs_2.4.26.diff.gz c4559af2366c764c6c42a3fdd40d60d3 src/ebtables-v2.0.6.tar.gz 29f494c6e25f47c639f8a20bd134f296 src/et_dyn.tar.gz @@ -102,7 +102,7 @@ 894b8969cfbdf787c73e139782167607 src/glibc-linuxthreads-2.3.2.tar.bz2 60bd8402892f120f77727c0ef8f6ffda src/glibc-patches.tar.bz2 ed39b34dd14014cc504840776af5ba10 src/gmp-4.1.2.tar.bz2 -cdef1c436e0abe729a5f079a363e0ed4 src/gnugk-2.0.6.tgz +770309df3d631d6c94dfb3a95a9be25e src/gnugk-2.0.8.tgz 16d0b575812060328f8e677b7f0047cc src/gnupg-1.2.4.tar.bz2 2c63e827d755527950d9d13fe3d87692 src/gpm-1.20.1.tar.bz2 4b1c99ec6ea415fcc75ac1b89edc90f0 src/gradm-2.0.tar.gz @@ -112,8 +112,7 @@ 0b69ba51545ce9b9bb2f3274d62346c5 src/grsecurity-2.0-2.6.5.patch.bz2 b5aa755f4e2b3f3c54116ba3887c0393 src/grsecurity-kernel-vhz1.patch.bz2 6ea0ee97ca7206b3ac45d55eab0d6e42 src/grsecurity-kernel-vhz2.patch.bz2 -299672a99cf59656e653d8ffd7851b56 src/grub-0.94.tar.gz -2fd1afd39ab17dcf88b6eae84ee4e1e3 src/grub_0.93+cvs20031021.orig.tar.gz +4ca8e4363d5f1980f2c63b7f5cdbe0d1 src/grub-0.95.tar.gz 3d6c191dfd2bf307014b421c12dc8469 src/gzip-1.3.5.tar.gz b3d65aa96d93fc08bc807fd1d9497c21 src/hdparm-5.5.tar.gz b31e3f91c76fe006d2af94a868445293 src/heartbeat-1.2.0.tar.gz @@ -126,7 +125,7 @@ 65eaddfd8eb8e3f7a2b4fc4f99a080dd src/ht-20040525-0.96.5-bgp-md5.patch.bz2 24a53cbaf5fa312145e599d256d81403 src/htb3.6_tc.diff 275d3d37eed1b070f333d3618f7d1954 src/httpd-2.0.49.tar.gz -fd775affb44dd65c85a5d330bebed107 src/i2c-2.8.4.tar.gz +0ffdfd9f7582aea05cec592948007347 src/i2c-2.8.7.tar.gz 0cd6740d0d14806a400f23e09835ca90 src/ians-2.3.63b.tar.gz 0d246d868f20d8c441d235b77c940676 src/imap-2002e.tar.Z 30ed19d5465d7e8472112cde0edc89ce src/insserv-1.00.2.tar.bz2 @@ -182,7 +181,7 @@ 0e6a19072c9b193b71aaac3668fdb09b src/linux-2.6.3-protector-1.patch.bz2 5218790bc3db41e77a7422969639a9ad src/linux-2.6.6.tar.bz2 0672ccd871def6842814c2d9d8c0689a src/linux-wlan-ng-0.2.1-pre16.tar.gz -baa836e7b31eeb991b105008ab7458a4 src/lm_sensors-2.8.6.tar.gz +64b4a4f547b2e1eab8a574d871867ca5 src/lm_sensors-2.8.7.tar.gz 9ec24a9f2cf588b348adf1a1381af8a4 src/loadlin16c-devil.tar.bz2 85e61b2b5774cd836ff03c3341e96ea4 src/logrotate-3.6.6-conf.dif.bz2 6ee90bd5e8979c058ed0587fc1892caf src/logrotate-3.6.6-dateext.dif.bz2 @@ -190,7 +189,7 @@ b57ab463a89c0ce9fee3140d036795ef src/logrotate-3.6.6-moveout.dif.bz2 fc5caa5f96f9b291f5cb7230e433f6c9 src/logrotate-3.6.6.tar.bz2 f90188b0fede61fab371093e32382ab9 src/longhaul-1.2.tar.gz -6150f021f8ff24d5fc8933788a7f5862 src/loop-AES-v2.0g.tar.bz2 +456652609ed0af2e85a8c186572a04f6 src/loop-AES-v2.1b.tar.bz2 094805059be9f363c258c8c808330e08 src/lsof_4.66_src.tar.bz2 f8520b9e100970ff13328fd08eb64dcd src/lvm_1.0.8.tar.gz 6916c0127839f1e454052b683e4691c4 src/lynx2.8.4rel.1.tar.bz2 @@ -201,7 +200,7 @@ 7e2d47fb1c3176812e8fd03572e52c92 src/man-pages-1.65.tar.bz2 70804dc9e2049e24f294ff7090a82a12 src/mc-4.6.0.tar.gz 3c7d6b3ca73ef12136746a8d06fc27a8 src/mcrypt-2.6.3.tar.gz -765286c4a22e36b70ce2f817f0c4647c src/mdadm-1.5.0.tgz +1eb2d3d7721b121e8bb370e26df11ef0 src/mdadm-1.6.0.tar.bz2 6c43d4aba3fdfa135c462a02b3ae5b39 src/memtest86-3.1a.tar.gz 4b80c418bc58add3e40de3be0ac6c02a src/mgetty1.1.30-Dec16.tar.gz 8ade81ae33ccbf75e096c1baeecfd153 src/mhash-0.9.1.tar.gz @@ -233,7 +232,7 @@ 45d92c2d466130ffc084d074fdd6c18b src/openldap-2.2.11.tgz 1dbfd40ae683f822ae917eebf171ca42 src/openssh-3.8.1p1.tar.gz 1b49e90fc8a75c3a507c0a624529aca5 src/openssl-0.9.7d.tar.gz -55d7ce958bb2ccf3d3204d1350c27179 src/openvpn-1.5.0.tar.gz +9eab3719b280a12d19ef1fda286cc363 src/openvpn-1.6.0.tar.gz fccf09aed13393ee67e50cc57b52b500 src/opt-3.18.tar.bz2 40dd0853d0c1c2cc019d6e2e8146555a src/passwdgen-1.diff.bz2 097cf193d1b040cf0d135945714faa83 src/passwdgen-2.2.tar.gz @@ -295,7 +294,7 @@ c4867d72c41564318e0107745eb7a0f2 src/setserial-2.17.tar.gz 876cfee9949b72d58e28b261b9d84059 src/sg3_utils-1.06.tgz 4fa404ebb4e29828232b3c9a2abddefd src/shadow-4.0.3.tar.bz2 -8c3bb47cdf46c96a6c46465e9b34296c src/shfs-0.34.tar.gz +016f49d71bc32eee2b5d11fc1600cfbe src/shfs-0.35.tar.gz 9f142caae41535f543c858d0dd854986 src/shorewall-2.0.1.tgz fc2cb32e926b25afa24f450f9a48fbb1 src/smartmontools-5.26.tar.gz f01ae080f1571fd3e8d282dcae51f528 src/snort-2.1.2.tar.gz @@ -313,7 +312,7 @@ ec1d44df8ced4ef2876a5aeae00a7f15 src/syslinux-no_exe.patch.bz2 4befd061adbe33df0cd187faa0372e12 src/syslinux-no_memdisk.patch.bz2 ef6121a305a4f6f6208d909ca41e6624 src/syslog-ng-1.6.4.tar.gz -07f1687e8e4366fd89861a72210e489f src/sysstat-5.0.4.tar.bz2 +5fbe915c32761f28e7af27a7f956f7f2 src/sysstat-5.0.5.tar.bz2 8a2d8f1ed5a2909da04132fefa44905e src/sysvinit-2.85.tar.gz fdfffdd8141a00ea72c16c34b486a00a src/tar-1.13.92.tar.bz2 eec4e5d6cda55464970a3157eb3bc534 src/tcp_wrappers_7.6.diff.gz @@ -326,6 +325,7 @@ 9e72c27986548d0cbc8ea850b7b47bdd src/thttpd-2.24.tar.gz b3f0ee7617593c2703755672fb1bfed3 src/tiff-v3.6.1.tar.gz 964d599ef696efccdeebe7721cd4828d src/traceroute-1.4a12.tar.gz +cfcec1b92f44dd1bdcb6cc3590c2465f src/traceroute_bindfix.patch.bz2 b042ade24576937621b013795c226cf7 src/uClibc-0.9.19.tar.bz2 ddc8272157bef5701b11e7a0789064ca src/ucspi-tcp-0.88.errno.patch.bz2 39b619147db54687c4a583a7a94c9163 src/ucspi-tcp-0.88.tar.gz @@ -343,7 +343,7 @@ 5fa39c3d8761b48732be137a06853c64 src/util-linux-2.12a.tar.gz a6e98f81c3fc129b8343f4d90ee0e8af src/vhz-j64-2.4.23.patch.bz2 b4ca2f8b2f3bc1f0edfe7499ef4cd042 src/vhz-param.patch.bz2 -c49d360bbd069d00e2a57804f2a123d9 src/vim-6.2.tar.bz2 +821fda8f14d674346b87e3ef9cb96389 src/vim-6.3.tar.bz2 1edd81324b4ffc0702c9ff289a342d91 src/vlan.1.8.tar.gz dec2837d33fbc1f96f77014d01739126 src/vobcopy-0.5.13.tar.bz2 5a38e1c69062e7688fbbdae6d1196de2 src/vsftpd-1.2.2.tar.gz |