mirror of
https://github.com/sbopkg/sbopkg
synced 2024-11-09 19:50:25 +03:00
rectify a documentation omission from r838
Remove documentation for removed config file option SBOPKGTMP and document its replacement, TMPDIR. Add TMPDIR (and comments) to the config file. Thanks to dive for raising this issue.
This commit is contained in:
parent
50a005bc3e
commit
74306e5424
@ -17,6 +17,13 @@ LOGFILE=${LOGFILE:-/var/log/sbopkg/sbopkg-build-log}
|
||||
QUEUEDIR=${QUEUEDIR:-/var/lib/sbopkg/queues}
|
||||
REPO_ROOT=${REPO_ROOT:-/var/lib/sbopkg}
|
||||
SRCDIR=${SRCDIR:-/var/cache/sbopkg}
|
||||
# sbopkg's temporary directory (where its internal temporary files are
|
||||
# kept and where packages are made prior to being moved to OUTPUT)
|
||||
# defaults to /tmp/sbopkg.XXXXXX where 'XXXXXX' is a random string. If
|
||||
# /tmp is not a suitable containing directory, pass in an alternate
|
||||
# TMPDIR or modify the following variable. This is actually a mktemp(1)
|
||||
# variable.
|
||||
TMPDIR=${TMPDIR:-/tmp}
|
||||
|
||||
# Other variables:
|
||||
CLEANUP=${CLEANUP:-NO}
|
||||
|
@ -334,19 +334,6 @@ The default assignment is:
|
||||
\fCxxxRSYNCFLAGSxxx\fP
|
||||
.\"---------------------------------------------------------------------
|
||||
.TP
|
||||
.B SBOPKGTMP
|
||||
Path.
|
||||
.IP
|
||||
This option sets the default directory where certain working files
|
||||
specific to
|
||||
.B sbopkg
|
||||
are saved on a temporary basis.
|
||||
.IP
|
||||
The default assignment is:
|
||||
.IP
|
||||
\fCxxxSBOPKGTMPxxx\fP
|
||||
.\"---------------------------------------------------------------------
|
||||
.TP
|
||||
.B SRCDIR
|
||||
Path.
|
||||
.IP
|
||||
@ -381,6 +368,30 @@ The default assignment is:
|
||||
\fCxxxTMPxxx\fP
|
||||
.\"---------------------------------------------------------------------
|
||||
.TP
|
||||
.B TMPDIR
|
||||
Path.
|
||||
.IP
|
||||
This option sets the default directory where certain working files
|
||||
specific to
|
||||
.B sbopkg
|
||||
are saved on a temporary basis. Note that this variable is actually used
|
||||
by
|
||||
.BR mktemp (1),
|
||||
and that the actual directory is hardcoded internally to
|
||||
.I sbopkg.XXXXXX
|
||||
where 'XXXXXX' is a random string.
|
||||
This variable determines the containing directory for that.
|
||||
If /tmp is not a suitable containing directory, TMPDIR can be assigned
|
||||
to on the command line when invoking
|
||||
.B sbopkg
|
||||
or the variable can be modified in
|
||||
.IR sbopkg.conf .
|
||||
.IP
|
||||
The default assignment is:
|
||||
.IP
|
||||
\fCxxxTMPDIRxxx\fP
|
||||
.\"---------------------------------------------------------------------
|
||||
.TP
|
||||
.B WGETFLAGS
|
||||
Command options.
|
||||
.IP
|
||||
@ -564,6 +575,7 @@ slakmagik
|
||||
.\" the official tarball go here.
|
||||
.SH SEE ALSO
|
||||
.BR diff (1),
|
||||
.BR mktemp (1),
|
||||
.BR rsync (1),
|
||||
.BR sbopkg (8),
|
||||
.BR uname (1),
|
||||
|
Loading…
Reference in New Issue
Block a user