mirror of
https://github.com/rworkman/slackpkg
synced 2024-12-25 21:58:42 +01:00
Update slackpkg.conf.new and slackpkg.conf.5
- Show DOWNLOADER options for curl usage. - Update manpage date and slackpkg version.
This commit is contained in:
parent
b211490ee5
commit
8aad60b3ab
2 changed files with 21 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
.TH SLACKPKG.CONF 5 "March 2021" slackpkg-15.0.1 ""
|
.TH SLACKPKG.CONF 5 "June 2022" slackpkg-15.0.10 ""
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.B slackpkg.conf
|
.B slackpkg.conf
|
||||||
\- Configuration data for slackpkg
|
\- Configuration data for slackpkg
|
||||||
|
@ -98,6 +98,18 @@ The default value of
|
||||||
.B WORKDIR
|
.B WORKDIR
|
||||||
is /var/lib/slackpkg.
|
is /var/lib/slackpkg.
|
||||||
|
|
||||||
|
.TP 5
|
||||||
|
.B DOWNLOADER
|
||||||
|
.br
|
||||||
|
Selects the download application slackpkg will use to fetch files.
|
||||||
|
Current options are \fBcurl\fR or \fBwget\fR. Default is wget.
|
||||||
|
|
||||||
|
.TP 5
|
||||||
|
.B CURLFLAGS
|
||||||
|
.br
|
||||||
|
Selects special options for curl. If you need to use multiple options,
|
||||||
|
remember to put them between double quotes.
|
||||||
|
|
||||||
.TP 5
|
.TP 5
|
||||||
.B WGETFLAGS
|
.B WGETFLAGS
|
||||||
.br
|
.br
|
||||||
|
|
|
@ -70,6 +70,14 @@ TEMP=/var/cache/packages
|
||||||
# Package lists, file lists, and others will be stored in WORKDIR:
|
# Package lists, file lists, and others will be stored in WORKDIR:
|
||||||
WORKDIR=/var/lib/slackpkg
|
WORKDIR=/var/lib/slackpkg
|
||||||
|
|
||||||
|
# Use curl or wget for Downloading (wget is default)
|
||||||
|
#DOWNLOADER=curl
|
||||||
|
|
||||||
|
DOWNLOADER=wget
|
||||||
|
|
||||||
|
# Special options for curl
|
||||||
|
#CURLFLAGS=
|
||||||
|
|
||||||
# Special options for wget (default is WGETFLAGS="--passive-ftp")
|
# Special options for wget (default is WGETFLAGS="--passive-ftp")
|
||||||
WGETFLAGS="--passive-ftp"
|
WGETFLAGS="--passive-ftp"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue