Date: Fri, 24 Aug 2007 11:40:06 GMT From: Martin Matuska <mm@FreeBSD.org> To: freebsd-bugs@FreeBSD.org Subject: Re: conf/115751: [PATCH] etc/rc.d/mdconfig (RELENG_6) Message-ID: <200708241140.l7OBe69l071220@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR conf/115751; it has been noted by GNATS. From: Martin Matuska <mm@FreeBSD.org> To: bug-followup@FreeBSD.org, mm@FreeBSD.org Cc: Subject: Re: conf/115751: [PATCH] etc/rc.d/mdconfig (RELENG_6) Date: Fri, 24 Aug 2007 13:35:35 +0200 Without the change in geom_uzip naming, this patch fixes etc/rc.d/mdconfig: Index: etc/rc.d/mdconfig =================================================================== RCS file: /home/ncvs/src/etc/rc.d/mdconfig,v retrieving revision 1.3.2.1 diff -u -r1.3.2.1 mdconfig --- etc/rc.d/mdconfig 21 Aug 2006 15:06:38 -0000 1.3.2.1 +++ etc/rc.d/mdconfig 24 Aug 2007 08:54:42 -0000 @@ -84,7 +84,7 @@ fi if [ "${_file}" != "${_file%.uzip}" ]; then # Load geom_uzip kernel module if needed - kldstat -q -m g_uzip || kldload geom_uzip || err 1 "geom_uzip failed to load." + kldstat -q -m geom_uzip || kldload geom_uzip || err 1 "geom_uzip failed to load." _dev="/dev/${_md}.uzip" fi for _i in `df ${_file} 2>/dev/null`; do _fs=${_i}; done
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200708241140.l7OBe69l071220>