From bugmaster at FreeBSD.org Mon Mar 2 03:07:41 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Mar 2 03:12:11 2009 Subject: Current problem reports assigned to freebsd-rc@FreeBSD.org Message-ID: <200903021106.n22B6wQE057425@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/130414 rc [patch] rc services started with onestart are not stop o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o conf/127917 rc [patch] dumpon rejects on start with physmem>swap even o bin/126562 rc rcorder(8) fails to run unrelated startup scripts when o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o conf/124747 rc [patch] savecore can't create dump from encrypted swap o conf/124248 rc [patch] add support for nice value for rc.d/jail + rc. o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o conf/122170 rc [patch] [request] New feature: notify admin via page o o conf/122036 rc [rc.d]: Mounting at boot with ZFS causes a halt in boo o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o conf/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o conf/120228 rc [zfs] [patch] Split ZFS volume startup / ease ZFS swap o conf/120194 rc [patch] UFS volumes on ZVOLs cannot be fsck'd at boot o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/118325 rc [patch] [request] new periodic script to test statuses o conf/118255 rc savecore never finding kernel core dumps (rcorder prob o conf/117935 rc [patch] ppp fails to start at boot because of missing o conf/113915 rc [patch] ndis wireless driver fails to associate when i o conf/109980 rc /etc/rc.d/netif restart doesn't destroy cloned_interfa o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o conf/105689 rc [ppp] [request] syslogd starts too late at boot o conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o conf/96343 rc [patch] rc.d order change to start inet6 before pf o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o conf/92523 rc [patch] allow rc scripts to kill process after a timeo o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement o conf/88913 rc [patch] wrapper support for rc.subr o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/81006 rc ipnat not working with tunnel interfaces on startup o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo o conf/73677 rc [patch] add support for powernow states to power_profi o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o conf/56934 rc [patch] rc.firewall rules for natd expect an interface o conf/45226 rc [patch] Fix for rc.network, ppp-user annoyance o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start 48 problems total. From sem at FreeBSD.org Wed Mar 4 02:37:56 2009 From: sem at FreeBSD.org (Sergey Matveychuk) Date: Wed Mar 4 02:38:03 2009 Subject: [RFC] setfib support in routing script Message-ID: <49AE4FEA.7000705@FreeBSD.org> Hi. There is a lack of setfib support in routing script. I've made a patch for the script. It allows use the syntax in rc.conf file: defaultrouter_fibN="..." static_routes_fibN="..." Where N is a fid number. If there will be no objections, I'll make the same for ipv6_* and fill a PR. BTW. Why ipv4 routing setting up in rc.d/routing script, but ipv6 using network.subr subroutine? -- Dixi. Sem. -------------- next part -------------- --- etc/rc.d/routing.orig 2009-03-04 12:36:15.000000000 +0300 +++ etc/rc.d/routing 2009-03-04 12:36:22.000000000 +0300 @@ -27,28 +27,44 @@ routing_stop() { - route -n flush + fibs_num=`sysctl -n net.fibs` + for i in `jot $fibs_num 0`; do + setfib -F $i route -n flush + done } static_start() { - case ${defaultrouter} in - [Nn][Oo] | '') - ;; - *) - static_routes="default ${static_routes}" - route_default="default ${defaultrouter}" - ;; - esac + fibs_num=`sysctl -n net.fibs` + if [ -n "${static_routes}" ]; then + static_routes_fib0=${static_routes} + fi + if [ -n "${defaultrouter}" ]; then + defaultrouter_fib0=${defaultrouter} + fi # Setup static routes. This should be done before router discovery. # - if [ -n "${static_routes}" ]; then - for i in ${static_routes}; do - eval route_args=\$route_${i} - route add ${route_args} - done - fi + for n in `jot $fibs_num 0`; do + eval _droute=\$defaultrouter_fib${n} + eval _routes=\$static_routes_fib${n} + + case ${_droute} in + [Nn][Oo] | '') + ;; + *) + _routes="default ${_routes}" + route_default="default ${_droute}" + ;; + esac + + if [ -n "${_routes}" ]; then + for i in ${_routes}; do + eval route_args=\$route_${i} + setfib -F $n route add ${route_args} + done + fi + done # Now ATM static routes # if [ -n "${natm_static_routes}" ]; then From bugmaster at FreeBSD.org Mon Mar 9 10:15:17 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Mar 9 10:17:14 2009 Subject: Current problem reports assigned to freebsd-rc@FreeBSD.org Message-ID: <200903091715.n29HFB3A045370@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/130414 rc [patch] rc services started with onestart are not stop o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o conf/127917 rc [patch] dumpon rejects on start with physmem>swap even o bin/126562 rc rcorder(8) fails to run unrelated startup scripts when o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o conf/124747 rc [patch] savecore can't create dump from encrypted swap o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o conf/122170 rc [patch] [request] New feature: notify admin via page o o conf/122036 rc [rc.d]: Mounting at boot with ZFS causes a halt in boo o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o conf/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o conf/120228 rc [zfs] [patch] Split ZFS volume startup / ease ZFS swap o conf/120194 rc [patch] UFS volumes on ZVOLs cannot be fsck'd at boot o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/118325 rc [patch] [request] new periodic script to test statuses o conf/118255 rc savecore never finding kernel core dumps (rcorder prob o conf/117935 rc [patch] ppp fails to start at boot because of missing o conf/113915 rc [patch] ndis wireless driver fails to associate when i o conf/109980 rc /etc/rc.d/netif restart doesn't destroy cloned_interfa o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o conf/105689 rc [ppp] [request] syslogd starts too late at boot o conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o conf/96343 rc [patch] rc.d order change to start inet6 before pf o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o conf/92523 rc [patch] allow rc scripts to kill process after a timeo o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement o conf/88913 rc [patch] wrapper support for rc.subr o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/81006 rc ipnat not working with tunnel interfaces on startup o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo o conf/73677 rc [patch] add support for powernow states to power_profi o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o conf/56934 rc [patch] rc.firewall rules for natd expect an interface o conf/45226 rc [patch] Fix for rc.network, ppp-user annoyance o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start 48 problems total. From sem at FreeBSD.org Mon Mar 9 10:41:21 2009 From: sem at FreeBSD.org (sem@FreeBSD.org) Date: Mon Mar 9 10:41:28 2009 Subject: conf/132476: [rc.d] [patch] add support setfib(1) in rc.d/routing Message-ID: <200903091741.n29HfF1V083254@freefall.freebsd.org> Synopsis: [rc.d] [patch] add support setfib(1) in rc.d/routing Responsible-Changed-From-To: freebsd-bugs->freebsd-rc@FreeBSD.org Responsible-Changed-By: sem Responsible-Changed-When: Mon Mar 9 17:40:52 UTC 2009 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=132476 From linimon at FreeBSD.org Mon Mar 9 10:46:00 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Mon Mar 9 10:46:12 2009 Subject: conf/132476: [rc.d] [patch] add support setfib(1) in rc.d/routing Message-ID: <200903091745.n29HjtS0088833@freefall.freebsd.org> Synopsis: [rc.d] [patch] add support setfib(1) in rc.d/routing Responsible-Changed-From-To: freebsd-rc@FreeBSD.org->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Mon Mar 9 17:45:44 UTC 2009 Responsible-Changed-Why: Canonicalize assignment. http://www.freebsd.org/cgi/query-pr.cgi?pr=132476 From linimon at FreeBSD.org Mon Mar 9 10:46:04 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Mon Mar 9 10:46:13 2009 Subject: conf/132476: [rc.d] [patch] add support setfib(1) in rc.d/routing Message-ID: <200903091745.n29HjtS0088833@freefall.freebsd.org> Synopsis: [rc.d] [patch] add support setfib(1) in rc.d/routing Responsible-Changed-From-To: freebsd-rc@FreeBSD.org->freebsd-rc Responsible-Changed-By: linimon Responsible-Changed-When: Mon Mar 9 17:45:44 UTC 2009 Responsible-Changed-Why: Canonicalize assignment. http://www.freebsd.org/cgi/query-pr.cgi?pr=132476 From sem at FreeBSD.org Mon Mar 9 12:53:24 2009 From: sem at FreeBSD.org (sem@FreeBSD.org) Date: Mon Mar 9 12:53:31 2009 Subject: conf/132483: [rc.subr] [patch] setfib(1) support for rc.subr Message-ID: <200903091953.n29JrMkn056395@freefall.freebsd.org> Synopsis: [rc.subr] [patch] setfib(1) support for rc.subr Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: sem Responsible-Changed-When: Mon Mar 9 19:53:04 UTC 2009 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=132483 From sem at ciam.ru Tue Mar 10 14:20:04 2009 From: sem at ciam.ru (Sergey Matveychuk) Date: Tue Mar 10 14:20:10 2009 Subject: conf/132483: [rc.subr] [patch] setfib(1) support for rc.subr Message-ID: <200903102120.n2ALK3b9060058@freefall.freebsd.org> The following reply was made to PR conf/132483; it has been noted by GNATS. From: Sergey Matveychuk To: bug-followup@FreeBSD.org, sem@FreeBSD.org Cc: Subject: Re: conf/132483: [rc.subr] [patch] setfib(1) support for rc.subr Date: Tue, 10 Mar 2009 23:33:45 +0300 This is a multi-part message in MIME format. --------------070006080300020602030906 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Fixed patch. --------------070006080300020602030906 Content-Type: text/plain; name="setfib_for_rc.subr.diff.txt" Content-Transfer-Encoding: base64 Content-Disposition: inline; filename="setfib_for_rc.subr.diff.txt" LS0tIGV0Yy9yYy5zdWJyLm9yaWcJMjAwOS0wMy0wOSAyMTozNDozNi4wMDAwMDAwMDAgKzAz MDANCisrKyBldGMvcmMuc3VicgkyMDA5LTAzLTA5IDIyOjE1OjMzLjAwMDAwMDAwMCArMDMw MA0KQEAgLTU4LDYgKzU4LDcgQEANCiBJRENNRD0iaWYgWyAteCAkSUQgXTsgdGhlbiAkSUQg LXVuOyBmaSINCiBQUz0iL2Jpbi9wcyAtd3ciDQogSklEPWAkUFMgLXAgJCQgLW8gamlkPWAN CitTRVRGSUI9Ii91c3Ivc2Jpbi9zZXRmaWIiDQogDQogY2FzZSAke09TVFlQRX0gaW4NCiBG cmVlQlNEKQ0KQEAgLTQyMiw2ICs0MjMsOCBAQA0KICMJJHtuYW1lfV9jaGRpcgluCURpcmVj dG9yeSB0byBjZCB0byBiZWZvcmUgcnVubmluZyAke2NvbW1hbmR9DQogIwkJCQkoaWYgbm90 IHVzaW5nICR7bmFtZX1fY2hyb290KS4NCiAjDQorIwkke25hbWV9X2ZpYgluCUEgRklCIG51 bWJlciBmb3Igc2V0ZmliKDEpLg0KKyMNCiAjCSR7bmFtZX1fZmxhZ3MJbglBcmd1bWVudHMg dG8gY2FsbCAke2NvbW1hbmR9IHdpdGguDQogIwkJCQlOT1RFOgkkZmxhZ3MgZnJvbSB0aGUg cGFyZW50IGVudmlyb25tZW50DQogIwkJCQkJY2FuIGJlIHVzZWQgdG8gb3ZlcnJpZGUgdGhp cy4NCkBAIC01ODEsNiArNTg0LDEyIEBADQogCV9waWRjbWQ9DQogCV9wcm9jbmFtZT0ke3By b2NuYW1lOi0ke2NvbW1hbmR9fQ0KIA0KKwlldmFsIF9maWI9XCQke25hbWV9X2ZpYg0KKwlf c2V0ZmliY21kPQ0KKwlpZiBbIC1uICIkX2ZpYiIgLWEgLXggJFNFVEZJQiAtYSAke19maWI6 LTB9IC1sdCBgJFNZU0NUTF9OIG5ldC5maWJzYCBdOyB0aGVuDQorCQlfc2V0ZmliY21kPSIv dXNyL3NiaW4vc2V0ZmliIC1GICRfZmliIg0KKwlmaQ0KKw0KIAkJCQkJIyBzZXR1cCBwaWQg Y2hlY2sgY29tbWFuZA0KIAlpZiBbIC1uICIkX3Byb2NuYW1lIiBdOyB0aGVuDQogCQlpZiBb IC1uICIkcGlkZmlsZSIgXTsgdGhlbg0KQEAgLTY0NCw3ICs2NTMsNyBAQA0KIA0KIAkJaWYg WyAtbiAiJF9jbWQiIF07IHRoZW4NCiAJCQlfcnVuX3JjX3ByZWNtZCB8fCByZXR1cm4gMQ0K LQkJCV9ydW5fcmNfZG9pdCAiJF9jbWQgJHJjX2V4dHJhX2FyZ3MiIHx8IHJldHVybiAxDQor CQkJX3J1bl9yY19kb2l0ICIkX3NldGZpYmNtZCAkX2NtZCAkcmNfZXh0cmFfYXJncyIgfHwg cmV0dXJuIDENCiAJCQlfcnVuX3JjX3Bvc3RjbWQNCiAJCQlyZXR1cm4gJF9yZXR1cm4NCiAJ CWZpDQpAQCAtNjgzLDEzICs2OTIsMTMgQEANCiAJCQlbIC16ICIke3JjX3F1aWV0fSIgXSAm JiBlY2hvICJTdGFydGluZyAke25hbWV9LiINCiAJCQlpZiBbIC1uICIkX2Nocm9vdCIgXTsg dGhlbg0KIAkJCQlfZG9pdD0iXA0KLSR7X25pY2U6K25pY2UgLW4gJF9uaWNlIH1cDQorJHtf bmljZTorbmljZSAtbiAkX25pY2UgfSAkX3NldGZpYmNtZFwNCiBjaHJvb3QgJHtfdXNlcjor LXUgJF91c2VyIH0ke19ncm91cDorLWcgJF9ncm91cCB9JHtfZ3JvdXBzOistRyAkX2dyb3Vw cyB9XA0KICRfY2hyb290ICRjb21tYW5kICRyY19mbGFncyAkY29tbWFuZF9hcmdzIg0KIAkJ CWVsc2UNCiAJCQkJX2RvaXQ9IlwNCiAke19jaGRpcjorY2QgJF9jaGRpciAmJiB9XA0KLSRj b21tYW5kICRyY19mbGFncyAkY29tbWFuZF9hcmdzIg0KKyRfc2V0ZmliY21kICRjb21tYW5k ICRyY19mbGFncyAkY29tbWFuZF9hcmdzIg0KIAkJCQlpZiBbIC1uICIkX3VzZXIiIF07IHRo ZW4NCiAJCQkJICAgIF9kb2l0PSJzdSAtbSAkX3VzZXIgLWMgJ3NoIC1jIFwiJF9kb2l0XCIn Ig0KIAkJCQlmaQ0KLS0tIHNoYXJlL21hbi9tYW44L3JjLnN1YnIuOC5vcmlnCTIwMDktMDMt MDkgMjI6MzE6MjYuMDAwMDAwMDAwICswMzAwDQorKysgc2hhcmUvbWFuL21hbjgvcmMuc3Vi ci44CTIwMDktMDMtMDkgMjI6MzE6MzEuMDAwMDAwMDAwICswMzAwDQpAQCAtNTg3LDYgKzU4 NywxMiBAQA0KIE9ubHkgc3VwcG9ydGVkIGFmdGVyDQogLlBhIC91c3INCiBpcyBtb3VudGVk Lg0KKy5JdCBWYSAke25hbWV9X2ZpYg0KK0lmIHRoZSBudW1iZXIgaXMgbGVzcyB0aGFuIGNv bmZpZ3VyZWQgRklCcyBudW1iZXIsDQorLlZhIGNvbW1hbmQNCit3aWxsIGJlIHJ1bm5lZCB3 aXRoIHNldGZpYigxKS4gT25seSBzdXBwb3J0ZWQgYWZ0ZXINCisuUGEgL3Vzcg0KK2lzIG1v dW50ZWQuDQogLkl0IFZhICR7bmFtZX1fZmxhZ3MNCiBBcmd1bWVudHMgdG8gY2FsbA0KIC5W YSBjb21tYW5kDQo= --------------070006080300020602030906-- From sem at FreeBSD.org Wed Mar 11 12:11:11 2009 From: sem at FreeBSD.org (Sergey Matveychuk) Date: Wed Mar 11 12:11:17 2009 Subject: strange name in bgfsck Message-ID: <49B803E3.6000902@FreeBSD.org> Hi. Why bgfsck script starts with the lines: name="background-fsck" rcvar="background_fsck" Why name with a dash? Does not canonical: name="background_fsck" rcvar="`set_rcvar`" will better? -- Dixi. Sem. From bugmaster at FreeBSD.org Mon Mar 16 04:07:02 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Mar 16 04:09:10 2009 Subject: Current problem reports assigned to freebsd-rc@FreeBSD.org Message-ID: <200903161107.n2GB713g043372@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/132483 rc [rc.subr] [patch] setfib(1) support for rc.subr o conf/132476 rc [rc.d] [patch] add support setfib(1) in rc.d/routing o conf/130414 rc [patch] rc services started with onestart are not stop o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o conf/127917 rc [patch] dumpon rejects on start with physmem>swap even o bin/126562 rc rcorder(8) fails to run unrelated startup scripts when o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o conf/124747 rc [patch] savecore can't create dump from encrypted swap o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o conf/122170 rc [patch] [request] New feature: notify admin via page o o conf/122036 rc [rc.d]: Mounting at boot with ZFS causes a halt in boo o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o conf/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o conf/120228 rc [zfs] [patch] Split ZFS volume startup / ease ZFS swap o conf/120194 rc [patch] UFS volumes on ZVOLs cannot be fsck'd at boot o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/118325 rc [patch] [request] new periodic script to test statuses o conf/118255 rc savecore never finding kernel core dumps (rcorder prob o conf/117935 rc [patch] ppp fails to start at boot because of missing o conf/113915 rc [patch] ndis wireless driver fails to associate when i o conf/109980 rc /etc/rc.d/netif restart doesn't destroy cloned_interfa o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o conf/105689 rc [ppp] [request] syslogd starts too late at boot o conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o conf/96343 rc [patch] rc.d order change to start inet6 before pf o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o conf/92523 rc [patch] allow rc scripts to kill process after a timeo o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement o conf/88913 rc [patch] wrapper support for rc.subr o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/81006 rc ipnat not working with tunnel interfaces on startup o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo o conf/73677 rc [patch] add support for powernow states to power_profi o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o conf/56934 rc [patch] rc.firewall rules for natd expect an interface o conf/45226 rc [patch] Fix for rc.network, ppp-user annoyance o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start 50 problems total. From delphij at FreeBSD.org Tue Mar 17 23:15:01 2009 From: delphij at FreeBSD.org (delphij@FreeBSD.org) Date: Tue Mar 17 23:15:13 2009 Subject: conf/132766: wait_for_pids() in /etc/rc.subr is dull. Message-ID: <200903180615.n2I6F0Tc033365@freefall.freebsd.org> Synopsis: wait_for_pids() in /etc/rc.subr is dull. Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: delphij Responsible-Changed-When: Wed Mar 18 06:12:38 UTC 2009 Responsible-Changed-Why: Looks like a useful feature, over to maintainer for review (note: the indentification should be changed) http://www.freebsd.org/cgi/query-pr.cgi?pr=132766 From maksim.yevmenkin at gmail.com Sun Mar 22 12:28:37 2009 From: maksim.yevmenkin at gmail.com (Maksim Yevmenkin) Date: Sun Mar 22 12:28:43 2009 Subject: [patch] /etc/rc.d/ipfw Message-ID: hello, would anyone object to the following small patch to /etc/rc.d/ifpw. this is basically to teach ipfw to 1) load ipfw_nat module when nat is required and natd is _not_ used 2) pass firewall type to rc.firewall script thanks, max ==== > diff -u /etc/rc.d/ipfw ipfw --- /etc/rc.d/ipfw 2008-07-24 07:02:05.000000000 -0700 +++ ipfw 2009-03-22 11:53:19.000000000 -0700 @@ -23,10 +23,19 @@ if checkyesno dummynet_enable; then required_modules="$required_modules dummynet" fi + if checkyesno firewall_nat_enable; then + if ! checkyesno natd_enable; then + required_modules="$required_modules ipfw_nat" + fi + fi } ipfw_start() { + local _firewall_type + + _firewall_type=$1 + # set the firewall rules script if none was specified [ -z "${firewall_script}" ] && firewall_script=/etc/rc.firewall @@ -34,7 +43,7 @@ if [ -f /etc/rc.d/natd ] ; then /etc/rc.d/natd start fi - /bin/sh "${firewall_script}" + /bin/sh "${firewall_script}" "${_firewall_type}" echo 'Firewall rules loaded.' elif [ "`ipfw list 65535`" = "65535 deny ip from any to any" ]; then echo 'Warning: kernel has firewall functionality, but' \ @@ -65,4 +74,4 @@ } load_rc_config $name -run_rc_command "$1" +run_rc_command "$*" From bugmaster at FreeBSD.org Mon Mar 23 04:07:04 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Mar 23 04:09:08 2009 Subject: Current problem reports assigned to freebsd-rc@FreeBSD.org Message-ID: <200903231107.n2NB72PV004124@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/132766 rc wait_for_pids() in /etc/rc.subr is dull. o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 rc [rc.d] [patch] add support setfib(1) in rc.d/routing o conf/130414 rc [patch] rc services started with onestart are not stop o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o conf/127917 rc [patch] dumpon rejects on start with physmem>swap even o bin/126562 rc rcorder(8) fails to run unrelated startup scripts when o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o conf/124747 rc [patch] savecore can't create dump from encrypted swap o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o conf/122170 rc [patch] [request] New feature: notify admin via page o o conf/122036 rc [rc.d]: Mounting at boot with ZFS causes a halt in boo o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o conf/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o conf/120228 rc [zfs] [patch] Split ZFS volume startup / ease ZFS swap o conf/120194 rc [patch] UFS volumes on ZVOLs cannot be fsck'd at boot o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/118325 rc [patch] [request] new periodic script to test statuses o conf/118255 rc savecore never finding kernel core dumps (rcorder prob o conf/117935 rc [patch] ppp fails to start at boot because of missing o conf/113915 rc [patch] ndis wireless driver fails to associate when i o conf/109980 rc /etc/rc.d/netif restart doesn't destroy cloned_interfa o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o conf/105689 rc [ppp] [request] syslogd starts too late at boot o conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o conf/96343 rc [patch] rc.d order change to start inet6 before pf o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o conf/92523 rc [patch] allow rc scripts to kill process after a timeo o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement o conf/88913 rc [patch] wrapper support for rc.subr o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/81006 rc ipnat not working with tunnel interfaces on startup o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo o conf/73677 rc [patch] add support for powernow states to power_profi o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o conf/56934 rc [patch] rc.firewall rules for natd expect an interface o conf/45226 rc [patch] Fix for rc.network, ppp-user annoyance o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start 51 problems total. From gavin at FreeBSD.org Thu Mar 26 05:21:59 2009 From: gavin at FreeBSD.org (gavin@FreeBSD.org) Date: Thu Mar 26 05:22:06 2009 Subject: conf/133070: [patch] /etc/periodic/daily/100.clean-disks traverses non-local file systems Message-ID: <200903261221.n2QCLweC070883@freefall.freebsd.org> Synopsis: [patch] /etc/periodic/daily/100.clean-disks traverses non-local file systems Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: gavin Responsible-Changed-When: Thu Mar 26 12:21:07 UTC 2009 Responsible-Changed-Why: Over to maintainer(s) http://www.freebsd.org/cgi/query-pr.cgi?pr=133070 From brucec at FreeBSD.org Thu Mar 26 11:46:22 2009 From: brucec at FreeBSD.org (brucec@FreeBSD.org) Date: Thu Mar 26 11:46:33 2009 Subject: conf/108589: rtsol(8) fails due to default ipfw rules Message-ID: <200903261846.n2QIkKu0088112@freefall.freebsd.org> Synopsis: rtsol(8) fails due to default ipfw rules Responsible-Changed-From-To: freebsd-bugs->freebsd-rc Responsible-Changed-By: brucec Responsible-Changed-When: Thu Mar 26 18:41:40 UTC 2009 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=108589 From dougb at FreeBSD.org Thu Mar 26 17:55:10 2009 From: dougb at FreeBSD.org (dougb@FreeBSD.org) Date: Thu Mar 26 17:55:20 2009 Subject: conf/133070: [patch] /etc/periodic/daily/100.clean-disks traverses non-local file systems Message-ID: <200903270055.n2R0t9SF091758@freefall.freebsd.org> Synopsis: [patch] /etc/periodic/daily/100.clean-disks traverses non-local file systems Responsible-Changed-From-To: freebsd-rc->freebsd-bugs Responsible-Changed-By: dougb Responsible-Changed-When: Fri Mar 27 00:54:52 UTC 2009 Responsible-Changed-Why: rc.d != periodic http://www.freebsd.org/cgi/query-pr.cgi?pr=133070 From bugmaster at FreeBSD.org Mon Mar 30 04:07:00 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Mar 30 04:09:04 2009 Subject: Current problem reports assigned to freebsd-rc@FreeBSD.org Message-ID: <200903301106.n2UB6xM2054882@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o conf/132766 rc wait_for_pids() in /etc/rc.subr is dull. o conf/132483 rc rc.subr(8) [patch] setfib(1) support for rc.subr o conf/132476 rc [rc.d] [patch] add support setfib(1) in rc.d/routing o conf/130414 rc [patch] rc services started with onestart are not stop o conf/128299 rc [patch] /etc/rc.d/geli does not mount partitions using o conf/127917 rc [patch] dumpon rejects on start with physmem>swap even o bin/126562 rc rcorder(8) fails to run unrelated startup scripts when o conf/126392 rc [patch] rc.conf ifconfig_xx keywords cannot be escaped o bin/126324 rc [patch] rc.d/tmp: Prevent mounting /tmp in second tim o conf/124747 rc [patch] savecore can't create dump from encrypted swap o conf/124248 rc [jail] [patch] add support for nice value for rc.d/jai o conf/123734 rc [patch] Chipset VIA CX700 requires extra initializatio o conf/123222 rc [patch] Add rtprio(1)/idprio(1) support to rc.subr(8). o conf/122477 rc [patch] /etc/rc.d/mdconfig and mdconfig2 are ignoring o conf/122170 rc [patch] [request] New feature: notify admin via page o o conf/122036 rc [rc.d]: Mounting at boot with ZFS causes a halt in boo o kern/121566 rc [nfs] [request] [patch] ethernet iface should be broug o conf/120431 rc [patch] devfs.rules are not initialized under certain o conf/120406 rc [devd] [patch] Handle newly attached pcm devices (eg. o conf/120228 rc [zfs] [patch] Split ZFS volume startup / ease ZFS swap o conf/120194 rc [patch] UFS volumes on ZVOLs cannot be fsck'd at boot o conf/119874 rc [patch] "/etc/rc.d/pf reload" fails if there are macro o conf/119076 rc [patch] [rc.d] /etc/rc.d/netif tries to remove alias a o bin/118325 rc [patch] [request] new periodic script to test statuses o conf/118255 rc savecore never finding kernel core dumps (rcorder prob o conf/117935 rc [patch] ppp fails to start at boot because of missing o conf/113915 rc [patch] ndis wireless driver fails to associate when i o conf/109980 rc /etc/rc.d/netif restart doesn't destroy cloned_interfa o conf/109562 rc [rc.d] [patch] [request] Make rc.d/devfs usable from c o conf/108589 rc rtsol(8) fails due to default ipfw rules o conf/106009 rc [ppp] [patch] [request] Fix pppoed startup script to p o conf/105689 rc [ppp] [request] syslogd starts too late at boot o conf/105568 rc [patch] [request] Add more flexibility to rc.conf, to o conf/105145 rc [ppp] [patch] [request] add redial function to rc.d/pp o conf/104549 rc [patch] rc.d/nfsd needs special _find_processes functi o conf/102700 rc [geli] [patch] Add encrypted /tmp support to GELI/GBDE o conf/99721 rc [patch] /etc/rc.initdiskless problem copy dotfile in s o conf/99444 rc [patch] Enhancement: rc.subr could easily support star o conf/96343 rc [patch] rc.d order change to start inet6 before pf o conf/93815 rc [patch] Adds in the ability to save ipfw rules to rc.d o conf/92523 rc [patch] allow rc scripts to kill process after a timeo o conf/89870 rc [patch] [request] make netif verbose rc.conf toggle o conf/89061 rc [patch] IPv6 6to4 auto-configuration enhancement o conf/88913 rc [patch] wrapper support for rc.subr o conf/85819 rc [patch] script allowing multiuser mode in spite of fsc o kern/81006 rc ipnat not working with tunnel interfaces on startup o conf/77663 rc Suggestion: add /etc/rc.d/addnetswap after addcritremo o conf/73677 rc [patch] add support for powernow states to power_profi o conf/58939 rc [patch] dumb little hack for /etc/rc.firewall{,6} o conf/56934 rc [patch] rc.firewall rules for natd expect an interface o conf/45226 rc [patch] Fix for rc.network, ppp-user annoyance o conf/44170 rc [patch] Add ability to run multiple pppoed(8) on start 52 problems total.