Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Feb 2013 02:35:19 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r246733 - projects/portbuild/admin/tools
Message-ID:  <201302130235.r1D2ZJ6D083513@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon (doc,ports committer)
Date: Wed Feb 13 02:35:19 2013
New Revision: 246733
URL: http://svnweb.freebsd.org/changeset/base/246733

Log:
  Add commented-out examples of zpool create commands.

Modified:
  projects/portbuild/admin/tools/example_install

Modified: projects/portbuild/admin/tools/example_install
==============================================================================
--- projects/portbuild/admin/tools/example_install	Wed Feb 13 02:21:45 2013	(r246732)
+++ projects/portbuild/admin/tools/example_install	Wed Feb 13 02:35:19 2013	(r246733)
@@ -1,12 +1,26 @@
 #!/bin/sh
 #
-# example script to drive mkportbuild
+# example script to drive the "mkportbuild" kickstart file
 #
 export PORTBUILD_USER=portbuild
 export SRCBUILD_USER=srcbuild
 export ZFS_VOLUME=a
 export ZFS_MOUNTPOINT=/a
 export VCS_REPOSITORY=svn://svn0.us-east.FreeBSD.org
+
+#
+# create the zpool.  the examples here are just suggestions and need to be
+# customized for your site.
+#
+# simple examples:
+# zpool create ${ZFS_VOLUME} da1
+# zpool create ${ZFS_VOLUME} gprootfs 
+# more complex example:
+# zpool create ${ZFS_VOLUME} mirror da1 da2 mirror da3 da4 mirror da5 da6 mirror da7 da8
+
+#
+# check out the kickstart file and run it
+#
 mkdir -p tmp
 svn checkout ${VCS_REPOSITORY}/base/projects/portbuild/admin/tools tmp
 sh -x ./tmp/newmkportbuild



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302130235.r1D2ZJ6D083513>