diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2012-09-08 10:55:41 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-08 17:28:33 -0500 |
commit | f4e6a0b62818a787eec9c1637de246979e6fb942 (patch) | |
tree | 183ead636186ba223b8154244495294f4007ac55 /system/slackyd/slackyd.conf | |
parent | 7316445ee3cd818b6974b881cf53a30e02a4f3a9 (diff) | |
download | slackbuilds-f4e6a0b62818a787eec9c1637de246979e6fb942.tar.gz |
system/slackyd: Added (slacky downloader).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'system/slackyd/slackyd.conf')
-rw-r--r-- | system/slackyd/slackyd.conf | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/system/slackyd/slackyd.conf b/system/slackyd/slackyd.conf new file mode 100644 index 0000000000..5305370631 --- /dev/null +++ b/system/slackyd/slackyd.conf @@ -0,0 +1,88 @@ +# +# Slacky Downloader Config File. +# +# Case insensitive. +# Comment: '#' or '!' +# + +# +# Slackyd cache +# +cache = /var/slackyd + +# +# Connection timeout, in seconds. +# Set to 0 for use Linux default value (very long). +# +timeout = 15 + +# +# Upgrade slackware packages with unofficial packages. +# +upgrade_replacing_official = yes + +# +# Using Slackware64 official mirror +# +slackware64 = no + +# +# Download with wget (proxy workaround) +# +wget = no + +# +# Repository syntax: +# +# KEYWORD NAME ADDRESS +# +# - "KEYWORD" Must always be "REPOSITORY" and must always be at start of line ! +# +# - "NAME" Is a string (only characters, numbers, underscores or '-') to identify repository. +# If not specified slackyd consider repository as official slackware mirror. +# In this case only first of the list will be used, if don't work slackyd try with second etc... +# +# - "ADDRESS" Is repository. +# +# - Only FILE/HTTP/FTP protocols are implemented yet. +# + +# Slackware repositories: + +# To use a directory as slackware mirror: +!repository = file://your/mirror/ +# To use a directory as extra mirror: +!repository mirrorname = file://your/mirror/ + +# Official mirror is too slow... +!repository ftp://ftp.slackware.com/pub/slackware/slackware-13.37/ + +repository = http://www.slackware.at/data/slackware-current/ + + +#Extra repositories: +# Slacky.eu +!repository slacky = http://darkstar.ist.utl.pt/slackware/addon/slacky/slackware-13.37/ +# GSlacky +!repository gslacky http://darkstar.ist.utl.pt/slackware/addon/slacky/gnome-slacky-13.37/ + +# Blacklist syntax: +# +# blacklist package1 package2 package3 ... +# +# `blacklist' keyword must be at start of line. +# Packages can be tab, white space or comma separated. +# +# Examples: +# 1) Blacklist all packages 'xine-lib': +# blacklist ^xine-lib-.* +# 2) Blacklist _exactly_ package xine-lib +# blacklist ^xine-lib-[^-]+-[^-]+-[^-] +# 3) Blacklist xine-lib-1, xine-lib-2 and xine-lib3: +# blacklist ^xine-lib-[123] +# 4) Blacklist firefox 3 and all kernel smp: +# blacklist ^mozilla-firefox-en-us-3 ^kernel-.*_smp +# +# Use -x option to disable blacklist on run-time, and -X option to see +# all packages blacklisted. +# |