Merge pull request #27 from pete4abw/master

This commit is contained in:
Piter Punk 2023-04-05 18:43:20 -03:00 committed by GitHub
commit 7776080596
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 1 deletions

View file

@ -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

View file

@ -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"