svn commit: r246733 - projects/portbuild/admin/tools

Mark Linimon linimon at FreeBSD.org
Wed Feb 13 02:35:20 UTC 2013


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


More information about the svn-src-projects mailing list