summaryrefslogtreecommitdiff
path: root/pkgtools/mksandbox
diff options
context:
space:
mode:
authorwiz <wiz>2012-08-26 11:00:23 +0000
committerwiz <wiz>2012-08-26 11:00:23 +0000
commit3b1641f6969bd7fe4f020c6094d528c936f21094 (patch)
treecd22eeaa82499e2b40018f8f27e9b317827e64ff /pkgtools/mksandbox
parent5556409038932fb270fb226e577a695ca0766c2c (diff)
downloadpkgsrc-3b1641f6969bd7fe4f020c6094d528c936f21094.tar.gz
Add more documentation.
Diffstat (limited to 'pkgtools/mksandbox')
-rw-r--r--pkgtools/mksandbox/files/mksandbox.846
1 files changed, 45 insertions, 1 deletions
diff --git a/pkgtools/mksandbox/files/mksandbox.8 b/pkgtools/mksandbox/files/mksandbox.8
index 4fcd2e9e81f..ec358888dab 100644
--- a/pkgtools/mksandbox/files/mksandbox.8
+++ b/pkgtools/mksandbox/files/mksandbox.8
@@ -1,4 +1,4 @@
-.\" $NetBSD: mksandbox.8,v 1.1 2012/08/26 10:31:23 wiz Exp $
+.\" $NetBSD: mksandbox.8,v 1.2 2012/08/26 11:00:23 wiz Exp $
.\"
.\" Copyright (c) 2012 Thomas Klausner. All rights reserved.
.\"
@@ -79,6 +79,50 @@ instead of the default
.Pa /usr/src
(only needed for some packages).
.El
+.Sh USAGE
+After
+.Nm
+has finished successfully,
+.Ar sandbox-dir
+will contain a file
+.Pa sandbox
+which can be used to set up and tear down the sandbox, as well as
+execute commands inside.
+The
+.Pa sandbox
+script supports the following commands:
+.Bl -tag -width XanythingXelseXXX
+.It Ic mount
+Set up the sandbox.
+.It Ic umount
+Tear down the sandbox.
+.It (no argument)
+Start
+.Xr ksh 1
+inside the sandbox.
+Can only be called after
+.Ic mount .
+.It anything-else
+Try running
+.Pa anything-else
+inside the sandbox.
+Fails if the argument is not an executable.
+Can only be called after
+.Ic mount .
+.El
+.Sh EXAMPLES
+The most common usage is running mksandbox once, e.g.
+.Dl mksandbox /home/user/sandboxdir
+and then reusing this sandbox.
+Once the sandbox exists, the most common usage is:
+.Bd -literal -offset indent
+cd /home/user/sandboxdir
+\&./sandbox mount
+\&./sandbox
+(do something inside, like a bulk build or building one package by hand)
+(CTRL-D or logout, to leave the shell inside the sandbox)
+\&./sandbox umount
+.Ed
.Sh AUTHORS
.An Alistair G. Crooks
.Aq agc@NetBSD.org