mirror of
https://github.com/rworkman/slackpkg
synced 2024-11-15 19:47:54 +01:00
Merge pull request #27 from pete4abw/master
This commit is contained in:
commit
7776080596
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
|
||||
.B slackpkg.conf
|
||||
\- Configuration data for slackpkg
|
||||
|
@ -98,6 +98,18 @@ The default value of
|
|||
.B WORKDIR
|
||||
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
|
||||
.B WGETFLAGS
|
||||
.br
|
||||
|
|
|
@ -70,6 +70,14 @@ TEMP=/var/cache/packages
|
|||
# Package lists, file lists, and others will be stored in WORKDIR:
|
||||
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")
|
||||
WGETFLAGS="--passive-ftp"
|
||||
|
||||
|
|
Loading…
Reference in a new issue