From owner-freebsd-sysinstall@FreeBSD.ORG Sun Feb 5 16:10:10 2012 Return-Path: Delivered-To: freebsd-sysinstall@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C91B61065672 for ; Sun, 5 Feb 2012 16:10:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9DCF28FC0A for ; Sun, 5 Feb 2012 16:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q15GAAvO091232 for ; Sun, 5 Feb 2012 16:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q15GAAjD091231; Sun, 5 Feb 2012 16:10:10 GMT (envelope-from gnats) Date: Sun, 5 Feb 2012 16:10:10 GMT Message-Id: <201202051610.q15GAAjD091231@freefall.freebsd.org> To: freebsd-sysinstall@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: bin/164278: commit references a PR X-BeenThere: freebsd-sysinstall@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Sysinstall Work List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Feb 2012 16:10:10 -0000 The following reply was made to PR bin/164278; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: bin/164278: commit references a PR Date: Sun, 5 Feb 2012 16:08:55 +0000 (UTC) Author: nwhitehorn Date: Sun Feb 5 16:08:45 2012 New Revision: 231020 URL: http://svn.freebsd.org/changeset/base/231020 Log: MFC r230309: Warn if trying to install over an existing partition, which usually fails anyway due to libarchive not being able to overwrite schg flags. PR: bin/164278 Modified: stable/9/usr.sbin/bsdinstall/partedit/partedit.c Directory Properties: stable/9/usr.sbin/bsdinstall/ (props changed) stable/9/usr.sbin/bsdinstall/scripts/ (props changed) Modified: stable/9/usr.sbin/bsdinstall/partedit/partedit.c ============================================================================== --- stable/9/usr.sbin/bsdinstall/partedit/partedit.c Sun Feb 5 15:59:18 2012 (r231019) +++ stable/9/usr.sbin/bsdinstall/partedit/partedit.c Sun Feb 5 16:08:45 2012 (r231020) @@ -240,23 +240,41 @@ delete_part_metadata(const char *name) static int validate_setup(void) { - struct partition_metadata *md; - int root_found = FALSE; + struct partition_metadata *md, *root = NULL; + int cancel; TAILQ_FOREACH(md, &part_metadata, metadata) { if (md->fstab != NULL && strcmp(md->fstab->fs_file, "/") == 0) - root_found = TRUE; + root = md; /* XXX: Check for duplicate mountpoints */ } - if (!root_found) { + if (root == NULL) { dialog_msgbox("Error", "No root partition was found. " "The root FreeBSD partition must have a mountpoint of '/'.", 0, 0, TRUE); return (FALSE); } + /* + * Check for root partitions that we aren't formatting, which is + * usually a mistake + */ + if (root->newfs == NULL) { + dialog_vars.defaultno = TRUE; + cancel = dialog_yesno("Warning", "The chosen root partition " + "has a preexisting filesystem. If it contains an existing " + "FreeBSD system, please update it with freebsd-update " + "instead of installing a new system on it. The partition " + "can also be erased by pressing \"No\" and then deleting " + "and recreating it. Are you sure you want to proceed?", + 0, 0); + dialog_vars.defaultno = FALSE; + if (cancel) + return (FALSE); + } + return (TRUE); } _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-sysinstall@FreeBSD.ORG Mon Feb 6 11:07:14 2012 Return-Path: Delivered-To: freebsd-sysinstall@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63EE7106566C for ; Mon, 6 Feb 2012 11:07:14 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 50CAA8FC18 for ; Mon, 6 Feb 2012 11:07:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q16B7ENT007963 for ; Mon, 6 Feb 2012 11:07:14 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q16B7DIb007961 for freebsd-sysinstall@FreeBSD.org; Mon, 6 Feb 2012 11:07:13 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 6 Feb 2012 11:07:13 GMT Message-Id: <201202061107.q16B7DIb007961@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-sysinstall@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-sysinstall@FreeBSD.org X-BeenThere: freebsd-sysinstall@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Sysinstall Work List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Feb 2012 11:07:14 -0000 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 bin/164399 sysinstall bsdinstall(8): 9.0 installer failures o bin/164294 sysinstall bsdinstall(8): FreeBSD 9.0-RELEASE bsdinstall dvd does o bin/164291 sysinstall bsdinstall(8): bsdinstall and filestetyem selection / o bin/164284 sysinstall bsdinstall(8): FreeBSD install assign incorrect dev as o bin/164281 sysinstall bsdinstall(8): please allow sysinstall as installer op o bin/164267 sysinstall bsdinstall(8) bugs when RE-installing to GPT partition o bin/164097 sysinstall bsdinstall(8): always installs GPT f bin/164094 sysinstall bsdinstall(8): installer progress over 100% o bin/163943 sysinstall bsdinstall(8) fails to detect CD device when booting w o bin/163123 sysinstall bsdinstall(8): IPV6 only errors connecting o bin/162693 sysinstall sysinstall(8): release/Makefile.sysinstall on 9.x refe o bin/162605 sysinstall sysinstall(8) doesn't identify CD/DVD drives for the u o bin/162429 sysinstall bsdinstall(8): 9.x installer: selecting ZFS for the ro o bin/162428 sysinstall bsdinstall(8): should check available disk space from o bin/162364 sysinstall sysinstall(8): update sysinstall ftp mirror list for c o bin/162258 sysinstall sysinstall(8): long-time bugs o bin/162175 sysinstall [patch] bsdinstall(8): add keymap selection loop and t o bin/162152 sysinstall bsdinstall(8): No up-to-date IPv6 French mirror f bin/161931 sysinstall bsdinstall(8): (add sysinstall partition config as opt o bin/161929 sysinstall bsdinstall(8): (change partition editor screen default o bin/161928 sysinstall bsdinstall(8): (add option to enable 2 button mouse co o bin/161924 sysinstall bsdinstall(8): add msg box telling user to remove inst o bin/161923 sysinstall bsdinstall(8) games & ports install options o kern/161837 sysinstall [libdisk] [patch] sysinstall(8) has a 32 disk limit o bin/161720 sysinstall bsdinstall(8): partition editor does not put partition o bin/161547 sysinstall [patch] bsdinstall(8) should identify wireless network f bin/161113 sysinstall bsdinstall(8): 9.0-BETA3: overwrites Win*-bootcodes wi o bin/161101 sysinstall bsdinstall(8): 9.0-BETA3: partition editor: UFS-option o bin/161100 sysinstall bsdinstall(8): 9.0-BETA3: Add User but no Add Group o bin/161056 sysinstall bsdinstall(8): could allow full control over newfs arg o bin/161055 sysinstall bsdinstall(8): partitioner should auto-populate GPT la f bin/161054 sysinstall bsdinstall(8): partitioner should list valid "type"s o bin/161053 sysinstall bsdinstall(8): network setup dialog is hard to navigat o bin/161052 sysinstall bsdinstall(8): should be consistent about saving confi o bin/161050 sysinstall bsdinstall(8): should use new syntax for IPv4 in rc.co o bin/161049 sysinstall bsdinstall(8): could try to tell if SSDs support TRIM o bin/161048 sysinstall [patch] bsdinstall(8): should run a concurrent shell o o bin/161047 sysinstall [patch] bsdinstall(8): should not run on vt0 o bin/157635 sysinstall sysinstall(8): "none" Do not install a boot manager - o bin/157117 sysinstall sysinstall(8): Add ftp4.se.freebsd.org to list of IPv6 o bin/154788 sysinstall sysinstall(8) crashes if no network interface found o bin/154613 sysinstall sysinstall(8) does not rescan USB automatically o bin/150995 sysinstall sysinstall(8): corruption of partition table s bin/150237 sysinstall sysinstall(8): Suggestion: installer should suggest th o bin/148805 sysinstall [hang] FreeBSD 7.2, 8.0, and 9.0 hang during install a f bin/148220 sysinstall sysinstall(8): 9.0-current gets "Cannot resolv hostnam o bin/148201 sysinstall sysinstall(8): core dump (Error 10) while trying to in o bin/148053 sysinstall sysinstall(8) labeling o bin/146299 sysinstall sysinstall(8): cannot create slice o bin/145735 sysinstall sysinstall(8) trashes Vista-created partition tables o bin/145027 sysinstall Remove all sysinstall(8) references to floppy and slip o bin/144278 sysinstall [install] Fixit from USB dont work o bin/142867 sysinstall sysinstall(8): in a custom installation re-entering th o misc/142335 sysinstall Download of Release 8.0 LIVE is NOT a "live" from CD p o bin/140843 sysinstall sysinstall(8): cannot software install from usb o bin/140842 sysinstall sysinstall(8): destroyed ncurses interface with FBSD8. o bin/140595 sysinstall [request] sysinstall(8): Replace "Country Selection" w o bin/138423 sysinstall sysinstall(8): Installer (and sade) get wrong number o o bin/138025 sysinstall sysinstall(8) fails to create big partition o bin/137864 sysinstall [patch] sysinstall(8): add possibility to shutdown/pow o bin/137713 sysinstall sysinstall(8): installer partition editor generates in o bin/134425 sysinstall sysinstall(8) custom distributions select all and dese o bin/129762 sysinstall sysinstall(8) doesn't seem to support GPT for EFI boar s bin/123304 sysinstall sysinstall(8): missing sensible and user friendly prog o bin/121503 sysinstall sysinstall(8): 7.0 upgrade doesn't let me mount all of a bin/121124 sysinstall sysinstall(8): FreeBSD 6.3 installation deletes MBR pa o bin/119077 sysinstall [patch] sysinstall(8) - reading packages from index is o bin/113682 sysinstall [patch] sysinstall(8) warns for invalid geometry which o bin/112757 sysinstall sysinstall(8): sysinstall(8): in the FDISK tool we can o bin/110151 sysinstall sysinstall(8): sysinstall(8) don't respects install ro o bin/108191 sysinstall sysinstall(8): Disklabel editor help text (by F1 key) o bin/107830 sysinstall sysinstall(8): Change Units (Z) in fdisk doesn't work p bin/102638 sysinstall [patch] sysinstall(8): custom dist set always install o bin/102498 sysinstall sysinstall(8): Cursor doesn't track sysinstall hilight a bin/101762 sysinstall sysinstall(8) does not obey /usr/ports symlink while i o bin/97108 sysinstall sysinstall(8): write failure on transfer (wrote -1 byt o bin/93275 sysinstall sysinstall(8): Failure to install after restarting ins o bin/90656 sysinstall sysinstall(8): 6.0-RELEASE (i386) cannot be installed s bin/86859 sysinstall sysinstall(8): Installer should ask about Linux earlie o bin/86454 sysinstall sysinstall(8): sysinstall terminates with signal 10 if o bin/79910 sysinstall sysinstall(8): Cannot escape from failed port/package o bin/79840 sysinstall sysinstall(8): Partitioning and formating a new disk f o bin/79621 sysinstall sysinstall(8): sysinstall(8) does not create a device o bin/78964 sysinstall sysinstall(8): can not write labels to hdd on installa s bin/73617 sysinstall sysinstall(8): fdisk editor unmarks active partition o bin/73410 sysinstall sysinstall(8): Sysinstall could not allocate disklabel o bin/72895 sysinstall sysinstall(8): Sysinstall generates invalid partition o bin/70002 sysinstall sysinstall(8): fails to locate FTP dirs if the OS has o bin/69986 sysinstall sysinstall(8): [patch] no job control in fixit shell o o bin/69942 sysinstall sysinstall(8): sysinstall changes /etc/rc.conf after i o bin/69723 sysinstall sysinstall(8): [request] allow to continue from packag o bin/62702 sysinstall sysinstall(8): backup of /etc and /root during sysinst o bin/62367 sysinstall sysinstall(8): 5.2.1-RC installation problems o bin/61890 sysinstall sysinstall(8): fdisk(8) uses incorrect calculations fo o bin/61603 sysinstall sysinstall(8): wrong geometry guessed o bin/60632 sysinstall sysinstall(8): UI bug in partition label screen in sys o bin/53341 sysinstall sysinstall(8): [patch] dump frequency in sysinstall is o bin/48989 sysinstall sysinstall(8): Sysinstall's partition editor gets con s bin/48341 sysinstall sysinstall(8): changes the active slice flag when it p o bin/46905 sysinstall sysinstall(8): FreeBSD 5.x cannot be installed from mu o bin/46235 sysinstall sysinstall(8): NTP servers for Finland require updatin o bin/42162 sysinstall sysinstall(8): after restart, installation crashes, md o bin/41949 sysinstall sysinstall(8): sysinstall sorts /etc/rc.conf during ne o bin/41850 sysinstall sysinstall(8): sysinstall fails to create root filesys o bin/40260 sysinstall sysinstall(8): hang when detecting devices (No CD/DVD s conf/39580 sysinstall sysinstall(8): [request] more secure mount options o bin/38854 sysinstall sysinstall(8): resetting during setup causes the targe s bin/38609 sysinstall sysinstall(8): [request] sysinstall should know the si o bin/38478 sysinstall sysinstall(8): In Choose Distributions screen, it's di o bin/38057 sysinstall sysinstall(8): "install" document doesn't display corr o bin/38056 sysinstall sysinstall(8): User (creation)'s "Member groups" item o bin/38055 sysinstall sysinstall(8): Groups (creation) item should be before o bin/37710 sysinstall sysinstall(8): LAN interface in wrong state after atte a bin/32375 sysinstall sysinstall(8): sysinstall doesn't respect User generat o bin/31363 sysinstall sysinstall(8): "partition editor" silently corrects pa a bin/30737 sysinstall sysinstall(8): sysinstall leaks file descriptors on re o bin/29375 sysinstall sysinstall(8): disk editor gets confused by slices tha a bin/23402 sysinstall sysinstall(8): upgrade ought to check partition sizes o bin/16948 sysinstall sysinstall(8): sysinstall/disklabel: bad partition tab o bin/15038 sysinstall sysinstall(8): easy to not notice that selection lists s bin/7232 sysinstall sysinstall(8): suggestion for FreeBSD installation dia 121 problems total. From owner-freebsd-sysinstall@FreeBSD.ORG Tue Feb 7 05:28:01 2012 Return-Path: Delivered-To: freebsd-sysinstall@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D308E106566B for ; Tue, 7 Feb 2012 05:28:01 +0000 (UTC) (envelope-from jguojun@sbcglobal.net) Received: from nm25-vm0.access.bullet.mail.mud.yahoo.com (nm25-vm0.access.bullet.mail.mud.yahoo.com [66.94.236.191]) by mx1.freebsd.org (Postfix) with SMTP id 8AA208FC0A for ; Tue, 7 Feb 2012 05:28:01 +0000 (UTC) Received: from [66.94.237.200] by nm25.access.bullet.mail.mud.yahoo.com with NNFMP; 07 Feb 2012 05:14:09 -0000 Received: from [66.94.237.110] by tm11.access.bullet.mail.mud.yahoo.com with NNFMP; 07 Feb 2012 05:14:09 -0000 Received: from [127.0.0.1] by omp1015.access.mail.mud.yahoo.com with NNFMP; 07 Feb 2012 05:14:09 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 242533.3424.bm@omp1015.access.mail.mud.yahoo.com Received: (qmail 86078 invoked by uid 60001); 7 Feb 2012 05:14:09 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sbcglobal.net; s=s1024; t=1328591649; bh=F+L0cveCe2Vm4ZcsME0kvYy0qzknHQmc1vSyCfB8h2E=; h=X-YMail-OSG:Received:X-Mailer:Message-ID:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=xYhNEpe5hmtr+c13l7ECpxlvfpdnk/tBhJrK0YI1FV0XvzwJlwqwEcMdWlLmND05nZ4ZO5bkx+H8vrTUYccCG5aHN4212FeElm6ZLsxy+mMqagZYwaXpFpdjNPSb53p6E14x7k9MaokG2hmDE6EDEj1jJncZUXfOYW+5p9jQI/k= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=sbcglobal.net; h=X-YMail-OSG:Received:X-Mailer:Message-ID:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=zGpszivPtzzKyyYh++AiDO/XW/jj3IvRDqKDojy1YKMjPsDUw/6NLu++HKIfmKKMPuGcQ3g7W+SQKo9y1yylX2uU5dE0jAMje/2TZNReA6Oq2AuWbFkCVZspBirjBFWpDbTGDmz8+B+fJTblhTzQFJ72tDfoYRsVvwmgR3hNb0U=; X-YMail-OSG: RuLpdBEVM1k1XRvASCkJ4LWD_g2s8hzNC9iyQVynVGyODS1 TaQHWLt2ZSUOQamu4dqMW3xWyhHhDRc9lEDC3KUOzZBnqfcO01l1idBoKbLu XwoE_hogZ7B3lLfEnZ3mbG3Cr2vXzNs1UjXrv7L2cxeT5.835jyIrnSexxOY e9h2YSl.AlkMTntwW9EwnV14FZuXWXafGHqa4BYNBI4zyxD9ViGQFgKEAPwM fmfmUf3eI3dGMCQEUgJFoeZo8mW2TsrxyGrowthOwyIUukrwC_nP0vEMI3CR 3YyAjEkxgFOUAPVEr1mZy2uO7uvCPmJPcNKmXPY7a7L_S08UCdaeOfk2yMLf gQ0dzxsYGhmlIBJSOxhPdH75knNm1FgjV3gSA_WpfeyLHxPS_kM5ePhAgkqc _rJ7KAoZlY2i0dUfSA0InddAU_G2LH6XeKXtpSTD6tGo7JUIFV0v8mHMJF4P LU4UU0yHsNMTBiqAdOFPlk4D5rLb7lkNJgd85yQSFimxiJLA03fUi6rPm.En nBsPbtiwEwbFVD1S.LGQRqogQHS8- Received: from [75.37.0.160] by web82203.mail.mud.yahoo.com via HTTP; Mon, 06 Feb 2012 21:14:09 PST X-Mailer: YahooMailClassic/15.0.4 YahooMailWebService/0.8.116.331537 Message-ID: <1328591649.84868.YahooMailClassic@web82203.mail.mud.yahoo.com> Date: Mon, 6 Feb 2012 21:14:09 -0800 (PST) From: Jin Guojun To: Devin Teske In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-sysinstall@FreeBSD.org Subject: Re: bin/164399: 9.0 installer failures X-BeenThere: freebsd-sysinstall@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Sysinstall Work List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Feb 2012 05:28:01 -0000 --- On Sat, 2/4/12, Devin Teske wrote: =0Asnapped ... =0A>=A0=A0=A0 In FreeBSD 9, FDISK partition tables can be read and written = using the "fdisk" utility, BUT... =0A=A0 =0A>=A0=A0=A0 If the disk has a GPT partition table, the device-nodes in /d= ev associated =0Awith the FDISK partition table ***will not be created*** until you destr= oy the GPT scheme (using "gpart destroy"). =0A =0A>=A0=A0=A0 This correctly implies that you cannot simultaneously use GPT= =0Aand FDISK within FreeBSD 9 on the same disk, it's one or the other. =0A =0AI assume this implies a bug for 9.0 installer because 6.4-R has not such= problem. =0AIf so, hopefully it can be fixed in 8.3 and 9.1 in next release; =0Aothe= rwise, new FreeBSD cannot co-exist with other OS on the same disk =0Adrive. =0A =0A>>=A0=A0=A0=A0 PS: The 9.0 seems preparing installation and partitioning= the disk like=20 =0A>>=A0=A0=A0=A0 Linux. This is no longer a BSD style :-( =0A> =0A>=A0=A0=A0 You're not alone. Many of us dislike the "everything on one b= ig root" too. =0AIt's not safe (e.g., filling "/tmp" fills boot partition), and it's not = BSD style. =0A> =0A>=A0=A0=A0 If you'd like to install FreeBSD 9.0-RELEASE with the old sty= le =0Apartitioning, please try my custom installer that uses the old =0Asys= install(8) (versus new bsdinstall(8)) installer: =0A> =0A>=A0=A0=A0 http://druidbsd.sf.net/ =0A> =0A>=A0=A0=A0 Instructions here: =0A> =0A>=A0=A0=A0 http://druidbsd.sf.net/freebsd_druid.shtml =0A> =0A>=A0=A0=A0 NOTE: However, since you've written GPT layout to disk, you'l= l =0Ahave to clear that before you can use sysinstall(8). No bother, just = =0Aboot into the installer and then press Alt+F4 to go to the "holo shell" = =0Awhere you type first "rescue" (hit ENTER) and then "gpart destroy =0ADIS= KNAME" (where DISKNAME is something like "ada0" -- use "sysctl =0Akern.disk= s" to list disks available). =0A =0AUnfortunately, gaprt destroy does not work. "ls -l" shows that /dev/ad0 = =0Ais a symlike to /dev/ada0, howevr, "gpart destroy ada0" returns Invalid = =0Aargument error: =0A =0Agpart: arg0 'ada0': Invalid argument =0A =0Aand "gpart destroy /dev/ada0" returns the same error.=20 =0A"gpart list -a" and "gpart show" does not output any thing. Installer se= es ada0 as an entire disk.=20 =0AThis looks like a GPT utility tool problem, doesn't it? =0A From owner-freebsd-sysinstall@FreeBSD.ORG Thu Feb 9 19:37:11 2012 Return-Path: Delivered-To: freebsd-sysinstall@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7F6A106564A for ; Thu, 9 Feb 2012 19:37:11 +0000 (UTC) (envelope-from rcm@fuzzwad.org) Received: from mail.volente.us (unknown [IPv6:2001:470:7:d47::2]) by mx1.freebsd.org (Postfix) with ESMTP id 51EC88FC1A for ; Thu, 9 Feb 2012 19:37:11 +0000 (UTC) Received: from shiny-w0.fuzzwad.net (localhost [127.0.0.1]) by mail.volente.us (8.14.4/8.14.4) with ESMTP id q19JbASn065426 for ; Thu, 9 Feb 2012 13:37:10 -0600 (CST) (envelope-from rcm@fuzzwad.org) Message-ID: <4F342066.2050409@fuzzwad.org> Date: Thu, 09 Feb 2012 13:37:10 -0600 From: Ron McDowell User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: freebsd-sysinstall@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Announcing bsdconfig(8) preliminary X-BeenThere: freebsd-sysinstall@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Sysinstall Work List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Feb 2012 19:37:11 -0000 http://fuzzwad.org/bsdconfig/ is a long way from finished, but there is enough of a framework available now, that I'm wanting some feedback on. Tarballs are out there and I'll guarantee you'll want to look at the latest, and not the earlier examples. The manpage in the tarball is a good place to start. Feel free to talk about it here and ask any questions you want. The direction I go with it will depend [I hope!] on where everyone wants it to go. Thanks in advance. -- Ron McDowell San Antonio TX From owner-freebsd-sysinstall@FreeBSD.ORG Sat Feb 11 01:19:55 2012 Return-Path: Delivered-To: freebsd-sysinstall@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D17F1065673 for ; Sat, 11 Feb 2012 01:19:55 +0000 (UTC) (envelope-from Devin.Teske@fisglobal.com) Received: from mx1.fisglobal.com (mx1.fisglobal.com [199.200.24.190]) by mx1.freebsd.org (Postfix) with ESMTP id 17B198FC1B for ; Sat, 11 Feb 2012 01:19:54 +0000 (UTC) Received: from pps.filterd (ltcfislmsgpa02 [127.0.0.1]) by ltcfislmsgpa02.fnfis.com (8.14.4/8.14.4) with SMTP id q1B0gBS2019357; Fri, 10 Feb 2012 19:19:53 -0600 Received: from smtp.fisglobal.com ([10.132.206.15]) by ltcfislmsgpa02.fnfis.com with ESMTP id 12wdy7r3tb-1 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT); Fri, 10 Feb 2012 19:19:53 -0600 Received: from dtwin (10.14.152.15) by smtp.fisglobal.com (10.132.206.15) with Microsoft SMTP Server (TLS) id 14.1.323.3; Fri, 10 Feb 2012 19:19:52 -0600 From: Devin Teske To: "'Ron McDowell'" , References: <4F342066.2050409@fuzzwad.org> In-Reply-To: <4F342066.2050409@fuzzwad.org> Date: Fri, 10 Feb 2012 17:20:05 -0800 Message-ID: <07f501cce85b$4ac934f0$e05b9ed0$@fisglobal.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook 14.0 Thread-Index: AQKZubcklnV4vWEup65bvVTG3h9BlZSbVJBQ Content-Language: en-us X-Originating-IP: [10.14.152.15] X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.6.7361, 1.0.260, 0.0.0000 definitions=2012-02-10_08:2012-02-10, 2012-02-10, 1970-01-01 signatures=0 Cc: devin.teske@fisglobal.com Subject: RE: Announcing bsdconfig(8) preliminary X-BeenThere: freebsd-sysinstall@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Sysinstall Work List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Feb 2012 01:19:55 -0000 > -----Original Message----- > From: owner-freebsd-sysinstall@freebsd.org [mailto:owner-freebsd- > sysinstall@freebsd.org] On Behalf Of Ron McDowell > Sent: Thursday, February 09, 2012 11:37 AM > To: freebsd-sysinstall@freebsd.org > Subject: Announcing bsdconfig(8) preliminary > > http://fuzzwad.org/bsdconfig/ is a long way from finished, but there is > enough of a framework available now, that I'm wanting some feedback on. > Tarballs are out there and I'll guarantee you'll want to look at the > latest, and not the earlier examples. The manpage in the tarball is a > good place to start. > > Feel free to talk about it here and ask any questions you want. The > direction I go with it will depend [I hope!] on where everyone wants it > to go. Thanks in advance. > Hi Ron, Thank you very much for working on this with everyone. I notice that you've centralized the use of "notimplemented" to /usr/libexec/bsdconfig/notimplemented which makes the per-module files /usr/libexec/bsdconfig/*.*/notimplemented obsolete. I thinking I should clean things up after installation by executing: cd /usr/libexec/bsdconfig sudo rm -f *.*/notimplemented Again, thanks for working on this, ... would you mind if I took it and worked on it this weekend and passed it back to you for review? -- Devin _____________ The information contained in this message is proprietary and/or confidential. If you are not the intended recipient, please: (i) delete the message and all copies; (ii) do not disclose, distribute or use the message in any manner; and (iii) notify the sender immediately. In addition, please be aware that any message addressed to our domain is subject to archiving and review by persons other than the intended recipient. Thank you. From owner-freebsd-sysinstall@FreeBSD.ORG Sat Feb 11 01:35:37 2012 Return-Path: Delivered-To: freebsd-sysinstall@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80DCB1065672 for ; Sat, 11 Feb 2012 01:35:37 +0000 (UTC) (envelope-from rcm@fuzzwad.org) Received: from mail.volente.us (unknown [IPv6:2001:470:7:d47::2]) by mx1.freebsd.org (Postfix) with ESMTP id 435918FC12 for ; Sat, 11 Feb 2012 01:35:37 +0000 (UTC) Received: from shiny-w0.fuzzwad.net (localhost [127.0.0.1]) by mail.volente.us (8.14.4/8.14.4) with ESMTP id q1B1ZYs8061556; Fri, 10 Feb 2012 19:35:34 -0600 (CST) (envelope-from rcm@fuzzwad.org) Message-ID: <4F35C5E6.7010607@fuzzwad.org> Date: Fri, 10 Feb 2012 19:35:34 -0600 From: Ron McDowell User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: freebsd-sysinstall@freebsd.org References: <4F342066.2050409@fuzzwad.org> <07f501cce85b$4ac934f0$e05b9ed0$@fisglobal.com> In-Reply-To: <07f501cce85b$4ac934f0$e05b9ed0$@fisglobal.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Devin Teske Subject: Re: Announcing bsdconfig(8) preliminary X-BeenThere: freebsd-sysinstall@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Sysinstall Work List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Feb 2012 01:35:37 -0000 On 2/10/12 7:20 PM, Devin Teske wrote: >> -----Original Message----- >> From: owner-freebsd-sysinstall@freebsd.org [mailto:owner-freebsd- >> sysinstall@freebsd.org] On Behalf Of Ron McDowell >> Sent: Thursday, February 09, 2012 11:37 AM >> To: freebsd-sysinstall@freebsd.org >> Subject: Announcing bsdconfig(8) preliminary >> >> http://fuzzwad.org/bsdconfig/ is a long way from finished, but there is >> enough of a framework available now, that I'm wanting some feedback on. >> Tarballs are out there and I'll guarantee you'll want to look at the >> latest, and not the earlier examples. The manpage in the tarball is a >> good place to start. >> >> Feel free to talk about it here and ask any questions you want. The >> direction I go with it will depend [I hope!] on where everyone wants it >> to go. Thanks in advance. >> > Hi Ron, > > Thank you very much for working on this with everyone. > > I notice that you've centralized the use of "notimplemented" to > /usr/libexec/bsdconfig/notimplemented which makes the per-module files > /usr/libexec/bsdconfig/*.*/notimplemented obsolete. > > I thinking I should clean things up after installation by executing: > > cd /usr/libexec/bsdconfig > sudo rm -f *.*/notimplemented Absolutely, thanks for pointing that out. I just cleaned it up on my copy. > Again, thanks for working on this, ... would you mind if I took it and worked on > it this weekend and passed it back to you for review? Go for it! -- Ron McDowell San Antonio TX From owner-freebsd-sysinstall@FreeBSD.ORG Sat Feb 11 02:36:01 2012 Return-Path: Delivered-To: freebsd-sysinstall@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0CE8E106564A for ; Sat, 11 Feb 2012 02:36:01 +0000 (UTC) (envelope-from Devin.Teske@fisglobal.com) Received: from mx1.fisglobal.com (mx1.fisglobal.com [199.200.24.190]) by mx1.freebsd.org (Postfix) with ESMTP id C69C78FC08 for ; Sat, 11 Feb 2012 02:36:00 +0000 (UTC) Received: from pps.filterd (ltcfislmsgpa02 [127.0.0.1]) by ltcfislmsgpa02.fnfis.com (8.14.4/8.14.4) with SMTP id q1B2PVuV005112; Fri, 10 Feb 2012 20:35:59 -0600 Received: from smtp.fisglobal.com ([10.132.206.16]) by ltcfislmsgpa02.fnfis.com with ESMTP id 12wdy7rbkt-1 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT); Fri, 10 Feb 2012 20:35:59 -0600 Received: from [10.0.0.101] (10.14.152.24) by smtp.fisglobal.com (10.132.206.16) with Microsoft SMTP Server (TLS) id 14.1.323.3; Fri, 10 Feb 2012 20:35:58 -0600 MIME-Version: 1.0 (Apple Message framework v1084) From: Devin Teske In-Reply-To: <4F35C5E6.7010607@fuzzwad.org> Date: Fri, 10 Feb 2012 18:35:57 -0800 Message-ID: <5FB150D7-BA30-406D-B8B1-5BDEF1909502@fisglobal.com> References: <4F342066.2050409@fuzzwad.org> <07f501cce85b$4ac934f0$e05b9ed0$@fisglobal.com> <4F35C5E6.7010607@fuzzwad.org> To: Ron McDowell X-Mailer: Apple Mail (2.1084) X-Originating-IP: [10.14.152.24] X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.6.7361, 1.0.260, 0.0.0000 definitions=2012-02-10_08:2012-02-10, 2012-02-10, 1970-01-01 signatures=0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-sysinstall@freebsd.org Subject: Re: Announcing bsdconfig(8) preliminary X-BeenThere: freebsd-sysinstall@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Sysinstall Work List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Feb 2012 02:36:01 -0000 On Feb 10, 2012, at 5:35 PM, Ron McDowell wrote: > On 2/10/12 7:20 PM, Devin Teske wrote: >>> -----Original Message----- >>> From: owner-freebsd-sysinstall@freebsd.org [mailto:owner-freebsd- >>> sysinstall@freebsd.org] On Behalf Of Ron McDowell >>> Sent: Thursday, February 09, 2012 11:37 AM >>> To: freebsd-sysinstall@freebsd.org >>> Subject: Announcing bsdconfig(8) preliminary >>>=20 >>> http://fuzzwad.org/bsdconfig/ is a long way from finished, but there is >>> enough of a framework available now, that I'm wanting some feedback on. >>> Tarballs are out there and I'll guarantee you'll want to look at the >>> latest, and not the earlier examples. The manpage in the tarball is a >>> good place to start. >>>=20 >>> Feel free to talk about it here and ask any questions you want. The >>> direction I go with it will depend [I hope!] on where everyone wants it >>> to go. Thanks in advance. >>>=20 >> Hi Ron, >>=20 >> Thank you very much for working on this with everyone. >>=20 >> I notice that you've centralized the use of "notimplemented" to >> /usr/libexec/bsdconfig/notimplemented which makes the per-module files >> /usr/libexec/bsdconfig/*.*/notimplemented obsolete. >>=20 >> I thinking I should clean things up after installation by executing: >>=20 >> cd /usr/libexec/bsdconfig >> sudo rm -f *.*/notimplemented >=20 > Absolutely, thanks for pointing that out. I just cleaned it up on my cop= y. >=20 >> Again, thanks for working on this, ... would you mind if I took it and w= orked on >> it this weekend and passed it back to you for review? >=20 > Go for it! >=20 How do you feel about implementing "090.time-zone" with my ports addition, = sysutils/tzdialog? Aside, I have a question about the INDEX file... Does the exit status of the program-to-be-executed matter in any way to bsd= config? Reason I ask is because tzdialog has a "-e" flag which may be useful if-des= ired, causing the exit status to be success if-and-only-if both a zonefile = is selected and it was installed without error. --=20 Devin _____________ The information contained in this message is proprietary and/or confidentia= l. If you are not the intended recipient, please: (i) delete the message an= d all copies; (ii) do not disclose, distribute or use the message in any ma= nner; and (iii) notify the sender immediately. In addition, please be aware= that any message addressed to our domain is subject to archiving and revie= w by persons other than the intended recipient. Thank you. From owner-freebsd-sysinstall@FreeBSD.ORG Sat Feb 11 03:21:38 2012 Return-Path: Delivered-To: freebsd-sysinstall@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40195106564A for ; Sat, 11 Feb 2012 03:21:38 +0000 (UTC) (envelope-from rcm@fuzzwad.org) Received: from mail.volente.us (unknown [IPv6:2001:470:7:d47::2]) by mx1.freebsd.org (Postfix) with ESMTP id DAA1D8FC19 for ; Sat, 11 Feb 2012 03:21:37 +0000 (UTC) Received: from shiny-w0.fuzzwad.net (localhost [127.0.0.1]) by mail.volente.us (8.14.4/8.14.4) with ESMTP id q1B3La1U063552 for ; Fri, 10 Feb 2012 21:21:37 -0600 (CST) (envelope-from rcm@fuzzwad.org) Message-ID: <4F35DEC0.2030904@fuzzwad.org> Date: Fri, 10 Feb 2012 21:21:36 -0600 From: Ron McDowell User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: freebsd-sysinstall@freebsd.org References: <4F342066.2050409@fuzzwad.org> <07f501cce85b$4ac934f0$e05b9ed0$@fisglobal.com> <4F35C5E6.7010607@fuzzwad.org> <5FB150D7-BA30-406D-B8B1-5BDEF1909502@fisglobal.com> In-Reply-To: <5FB150D7-BA30-406D-B8B1-5BDEF1909502@fisglobal.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Announcing bsdconfig(8) preliminary X-BeenThere: freebsd-sysinstall@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Sysinstall Work List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Feb 2012 03:21:38 -0000 On 2/10/12 8:35 PM, Devin Teske wrote: > On Feb 10, 2012, at 5:35 PM, Ron McDowell wrote: > >> On 2/10/12 7:20 PM, Devin Teske wrote: >>>> -----Original Message----- >>>> From: owner-freebsd-sysinstall@freebsd.org [mailto:owner-freebsd- >>>> sysinstall@freebsd.org] On Behalf Of Ron McDowell >>>> Sent: Thursday, February 09, 2012 11:37 AM >>>> To: freebsd-sysinstall@freebsd.org >>>> Subject: Announcing bsdconfig(8) preliminary >>>> >>>> http://fuzzwad.org/bsdconfig/ is a long way from finished, but there is >>>> enough of a framework available now, that I'm wanting some feedback on. >>>> Tarballs are out there and I'll guarantee you'll want to look at the >>>> latest, and not the earlier examples. The manpage in the tarball is a >>>> good place to start. >>>> >>>> Feel free to talk about it here and ask any questions you want. The >>>> direction I go with it will depend [I hope!] on where everyone wants it >>>> to go. Thanks in advance. >>>> >>> Hi Ron, >>> >>> Thank you very much for working on this with everyone. >>> >>> I notice that you've centralized the use of "notimplemented" to >>> /usr/libexec/bsdconfig/notimplemented which makes the per-module files >>> /usr/libexec/bsdconfig/*.*/notimplemented obsolete. >>> >>> I thinking I should clean things up after installation by executing: >>> >>> cd /usr/libexec/bsdconfig >>> sudo rm -f *.*/notimplemented >> Absolutely, thanks for pointing that out. I just cleaned it up on my copy. >> >>> Again, thanks for working on this, ... would you mind if I took it and worked on >>> it this weekend and passed it back to you for review? >> Go for it! >> > How do you feel about implementing "090.time-zone" with my ports addition, sysutils/tzdialog? tzsetup(8) is already installed in base...I haven't looked at tzdialog, does it do more than tzsetup? If so, then tzdialog needs to be included here like we've done with host-setup in 120.networking. > Aside, I have a question about the INDEX file... > > Does the exit status of the program-to-be-executed matter in any way to bsdconfig? Not yet, but it could and probably should...if nothing else, we should at least pass the exit code back up the line. > Reason I ask is because tzdialog has a "-e" flag which may be useful if-desired, causing the exit status to be success if-and-only-if both a zonefile is selected and it was installed without error. -- Ron McDowell San Antonio TX From owner-freebsd-sysinstall@FreeBSD.ORG Sat Feb 11 22:06:19 2012 Return-Path: Delivered-To: freebsd-sysinstall@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94FDB106566C for ; Sat, 11 Feb 2012 22:06:19 +0000 (UTC) (envelope-from Devin.Teske@fisglobal.com) Received: from mx1.fisglobal.com (mx1.fisglobal.com [199.200.24.190]) by mx1.freebsd.org (Postfix) with ESMTP id 54A338FC12 for ; Sat, 11 Feb 2012 22:06:18 +0000 (UTC) Received: from pps.filterd (ltcfislmsgpa02 [127.0.0.1]) by ltcfislmsgpa02.fnfis.com (8.14.4/8.14.4) with SMTP id q1BLPk4e028858; Sat, 11 Feb 2012 16:06:18 -0600 Received: from smtp.fisglobal.com ([10.132.206.15]) by ltcfislmsgpa02.fnfis.com with ESMTP id 12wpkyhnpt-1 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT); Sat, 11 Feb 2012 16:06:18 -0600 Received: from [10.0.0.101] (10.14.152.24) by smtp.fisglobal.com (10.132.206.15) with Microsoft SMTP Server (TLS) id 14.1.323.3; Sat, 11 Feb 2012 16:06:17 -0600 MIME-Version: 1.0 (Apple Message framework v1084) From: Devin Teske In-Reply-To: <4F35DEC0.2030904@fuzzwad.org> Date: Sat, 11 Feb 2012 14:06:15 -0800 Message-ID: References: <4F342066.2050409@fuzzwad.org> <07f501cce85b$4ac934f0$e05b9ed0$@fisglobal.com> <4F35C5E6.7010607@fuzzwad.org> <5FB150D7-BA30-406D-B8B1-5BDEF1909502@fisglobal.com> <4F35DEC0.2030904@fuzzwad.org> To: Ron McDowell X-Mailer: Apple Mail (2.1084) X-Originating-IP: [10.14.152.24] X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.6.7361, 1.0.260, 0.0.0000 definitions=2012-02-11_05:2012-02-10, 2012-02-11, 1970-01-01 signatures=0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-sysinstall@freebsd.org Subject: Re: Announcing bsdconfig(8) preliminary X-BeenThere: freebsd-sysinstall@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Sysinstall Work List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Feb 2012 22:06:19 -0000 On Feb 10, 2012, at 7:21 PM, Ron McDowell wrote: > On 2/10/12 8:35 PM, Devin Teske wrote: >> On Feb 10, 2012, at 5:35 PM, Ron McDowell wrote: >>=20 >>> On 2/10/12 7:20 PM, Devin Teske wrote: >>>>> -----Original Message----- >>>>> From: owner-freebsd-sysinstall@freebsd.org [mailto:owner-freebsd- >>>>> sysinstall@freebsd.org] On Behalf Of Ron McDowell >>>>> Sent: Thursday, February 09, 2012 11:37 AM >>>>> To: freebsd-sysinstall@freebsd.org >>>>> Subject: Announcing bsdconfig(8) preliminary >>>>>=20 >>>>> http://fuzzwad.org/bsdconfig/ is a long way from finished, but there = is >>>>> enough of a framework available now, that I'm wanting some feedback o= n. >>>>> Tarballs are out there and I'll guarantee you'll want to look at the >>>>> latest, and not the earlier examples. The manpage in the tarball is a >>>>> good place to start. >>>>>=20 >>>>> Feel free to talk about it here and ask any questions you want. The >>>>> direction I go with it will depend [I hope!] on where everyone wants = it >>>>> to go. Thanks in advance. >>>>>=20 >>>> Hi Ron, >>>>=20 >>>> Thank you very much for working on this with everyone. >>>>=20 >>>> I notice that you've centralized the use of "notimplemented" to >>>> /usr/libexec/bsdconfig/notimplemented which makes the per-module files >>>> /usr/libexec/bsdconfig/*.*/notimplemented obsolete. >>>>=20 >>>> I thinking I should clean things up after installation by executing: >>>>=20 >>>> cd /usr/libexec/bsdconfig >>>> sudo rm -f *.*/notimplemented >>> Absolutely, thanks for pointing that out. I just cleaned it up on my c= opy. >>>=20 >>>> Again, thanks for working on this, ... would you mind if I took it and= worked on >>>> it this weekend and passed it back to you for review? >>> Go for it! >>>=20 >> How do you feel about implementing "090.time-zone" with my ports additio= n, sysutils/tzdialog? >=20 > tzsetup(8) is already installed in base...I haven't looked at tzdialog, d= oes it do more than tzsetup? If so, then tzdialog needs to be included here= like we've done with host-setup in 120.networking. >=20 >> Aside, I have a question about the INDEX file... >>=20 >> Does the exit status of the program-to-be-executed matter in any way to = bsdconfig? >=20 > Not yet, but it could and probably should...if nothing else, we should at= least pass the exit code back up the line. >=20 >> Reason I ask is because tzdialog has a "-e" flag which may be useful if-= desired, causing the exit status to be success if-and-only-if both a zonefi= le is selected and it was installed without error. >=20 > --=20 > Ron McDowell > San Antonio TX I've put a significant amount of work into this over the last 24 hours and = would like to share my contributions. http://druidbsd.sourceforge.net/download/bsdconfig/ http://druidbsd.sourceforge.net/download/bsdconfig/bsdconfig.120211.txz Please try: bsdconfig networking bsdconfig timezone bsdconfig networking -h bsdconfig timezone -h bsdconfig networking -X bsdconfig timezone -X NOTE: Manuals need updating now. ALSO NOTE: networking and timezone modules now look like bsdconfig and are = consistent with other features. ASIDE: I'm going to try and start a trend -- that the progname be the same = as the argument (e.g. host-setup is now named "networking"; to make it easi= er to remember which command invokes it from bsdconfig first-arg). --=20 Devin _____________ The information contained in this message is proprietary and/or confidentia= l. If you are not the intended recipient, please: (i) delete the message an= d all copies; (ii) do not disclose, distribute or use the message in any ma= nner; and (iii) notify the sender immediately. In addition, please be aware= that any message addressed to our domain is subject to archiving and revie= w by persons other than the intended recipient. Thank you.