still wrong curl deps.
[platform/upstream/libzypp.git] / zypp.conf
1 ## Configuration file for software management
2 ## /etc/zypp/zypp.conf
3 ##
4 ## Boolean values are 0 1 yes no on off true false
5
6
7 [main]
8
9
10 ##
11 ## Override the detected architecture
12 ##
13 ## Valid values:  i586, i686, x86_64, ppc, ppc64, ia64, s390, s390x, ..
14 ## Default value: Autodetected
15 ##
16 ## ** CAUTION: Only set if you know what you're doing !
17 ## ** Changing this needs a full refresh (incl. download)
18 ## ** of all repository data.
19 ##
20 # arch = s390
21
22
23 ##
24 ## Path where the caches are kept.
25 ##
26 ## Valid values: A directory
27 ## Default value: /var/cache/zypp
28 ##
29 # cachedir = /var/cache/zypp
30
31
32 ##
33 ## Path where the repo metadata is downloaded and kept.
34 ##
35 ## Valid values: A directory
36 ## Default value: {cachedir}/raw
37 ##
38 ## Changing this needs a full refresh (incl. download) of all repository data
39 ##
40 # metadatadir = /var/cache/zypp/raw
41
42
43 ##
44 ## Path where the repo solv files are created and kept.
45 ##
46 ## Valid values: A directory
47 ## Default value: {cachedir}/solv
48 ##
49 # solvfilesdir = /var/cache/zypp/solv
50
51
52 ##
53 ## Path where the repo packages are downloaded and kept.
54 ##
55 ## Valid values: A directory
56 ## Default value: {cachedir}/packages
57 ##
58 # packagesdir = /var/cache/zypp/packages
59
60
61 ##
62 ## Path where the configuration files are kept.
63 ##
64 ## Valid values: A directory
65 ## Default value: /etc/zypp
66 ##
67 # configdir = /etc/zypp
68
69 ##
70 ## Path where the known repositories .repo files are kept
71 ##
72 ## Valid values: A directory
73 ## Default value: {configdir}/repos.d
74 ##
75 ## Changing this invalidates all known repositories
76 ##
77 # reposdir = /etc/zypp/repos.d
78
79 ##
80 ## Path where the known services .service files are kept
81 ##
82 ## Valid values: A directory
83 ## Default value: {configdir}/services.d
84 ##
85 ## Changing this invalidates all known services
86 ##
87 # servicesdir = /etc/zypp/services.d
88
89
90 ##
91 ## Whether repository urls should be probed when added
92 ##
93 ## Valid values: boolean
94 ## Default value: false
95 ##
96 ## If true, accessability of repositories is checked immediately (when added)
97 ##   (e.g. 'zypper ar' will check immediately)
98 ## If false, accessability of repositories is checked when refreshed
99 ##   (e.g. 'zypper ar' will delay the check until the next refresh)
100 ##
101 # repo.add.probe = false
102
103
104 ##
105 ## Amount of time in minutes that must pass before another refresh.
106 ##
107 ## Valid values: Integer
108 ## Default value: 10
109 ##
110 ## If you have autorefresh enabled for a repository, it is checked for
111 ## up-to-date metadata not more often than every <repo.refresh.delay>
112 ## minutes. If an automatic request for refresh comes before <repo.refresh.delay>
113 ## minutes passed since the last check, the request is ignored.
114 ##
115 ## A value of 0 means the repository will always be checked. To get the oposite
116 ## effect, disable autorefresh for your repositories.
117 ##
118 ## This option has no effect for repositories with autorefresh disabled, nor for
119 ## user-requested refresh.
120 ##
121 # repo.refresh.delay = 10
122
123 ##
124 ## Maximum number of concurrent connections to use per transfer
125 ##
126 ## Valid values: Integer
127 ## Default value: 5
128 ##
129 ## This setting is only used if more than one is possible
130 ## Setting it to a reasonable number avoids flooding servers
131 ##
132 # download.max_concurrent_connections = 5
133
134 ##
135 ## Sets the minimum download speed (bytes per second)
136 ## until the connection is dropped
137 ## This can be useful to prevent security attacks on hosts by
138 ## providing updates at very low speeds.
139 ##
140 ## 0 means no limit
141 ##
142 # download.min_download_speed = 0
143
144 ## Maximum download speed (bytes per second)
145 ## 0 means no limit
146 # download.max_download_speed = 0
147
148 ## Number of tries per download which will be
149 ## done without user interaction
150 ## 0 means no limit (use with caution)
151 # download.max_silent_tries = 5
152
153 ##
154 ## Whether to consider using a .delta.rpm when downloading a package
155 ##
156 ## Valid values: boolean
157 ## Default value: true
158 ##
159 ## Using a delta rpm will decrease the download size for package updates
160 ## since it does not contain all files of the package but only the binary
161 ## diff of changed ones. Recreating the rpm package on the local machine
162 ## is an expensive operation (memory,CPU). If your network connection is
163 ## not too slow, you benefit from disabling .delta.rpm.
164 ##
165 # download.use_deltarpm = true
166
167 ##
168 ## Whether to consider using a deltarpm even when rpm is local
169 ##
170 ## Valid values: boolean
171 ## Default value: false
172 ##
173 ## This option has no effect unless download.use_deltarpm is set true.
174 ##
175 #  download.use_deltarpm.always = false
176
177 ##
178 ## Hint which media to prefer when installing packages (download vs. CD).
179 ##
180 ## Valid values:        download, volatile
181 ## Default value:       download
182 ##
183 ## Note that this just a hint. First of all the solver will choose the 'best'
184 ## package according to its repos priority, version and architecture. But if
185 ## there is a choice, we will prefer packages from the desired media.
186 ##
187 ## Packages available locally are always preferred. The question is whether
188 ## you prefer packages being downloaded via FTP/HTTP/HTTPS (download), rather
189 ## than being prompted to insert a CD/DVD (volatile), in case they are available
190 ## on both media.
191 ##
192 ##   Name             | Priority | URI
193 ##   openSUSE-11.1      99         dvd:///
194 ##   openSUSE-11.1-Oss  99         http://download.opensuse.org/distribution/11.1/repo/oss
195 ##
196 ## In the above example 2 repositories with similar content are used. Rather
197 ## than raising the priority of one of them to 'prefer' a certain media, you
198 ## should use the same priority for both and set download.media_preference
199 ## instead.
200 ##
201 ## download.media_preference = download
202
203 ##
204 ## Commit download policy to use as default.
205 ##
206 ##  DownloadOnly,       Just download all packages to the local cache.
207 ##                      Do not install. Implies a dry-run.
208 ##
209 ##  DownloadInAdvance,  First download all packages to the local cache.
210 ##                      Then start to install.
211 ##
212 ##  DownloadInHeaps,    Similar to DownloadInAdvance, but try to split
213 ##                      the transaction into heaps, where at the end of
214 ##                      each heap a consistent system state is reached.
215 ##
216 ##  DownloadAsNeeded    Alternating download and install. Packages are
217 ##                      cached just to avid CD/DVD hopping. This is the
218 ##                      traditional behaviour.
219 ##
220 ##  <UNSET>             If a value is not set, empty or unknown, we pick
221 ##                      some sane default.
222 ##
223 ## commit.downloadMode =
224
225 ##
226 ## Defining directory which contains vendor description files.
227 ##
228 ## One file in this directory reflects a group of equivalent vendors. e.G.:
229 ## (filename is "nvidia" but could be any other name):
230 ## ------------------------- file contains begin -----------------------
231 ## [main]
232 ##
233 ## vendors = nvidia,suse,opensuse
234 ##
235 ## ------------------------- file contains end -----------------------
236 ## Libzypp makes an string comparision (like strncmp, case-insensitive)
237 ## whereas the beginning of the strings are compared only.
238 ## e.G. vendor "opensuse11.0" is compatible to "openSuSE".
239 ##
240 ## Valid values: A directory
241 ## Default value: {configdir}/vendors.d
242 ##
243 # vendordir = /etc/zypp/vendors.d
244
245
246 ##
247 ## Whether required packages are installed ONLY
248 ## So recommended packages, language packages and packages which depend
249 ## on hardware (modalias) will not be regarded.
250 ##
251 ## Valid values: boolean
252 ## Default value: false
253 ##
254 # solver.onlyRequires = false
255
256 ##
257 ## EXPERTS ONLY: Per default the solver will not replace packages of
258 ## different vendors, unless you explicitly ask to do so. Setting this
259 ## option to TRUE will disable this vendor check (unless the application
260 ## explicitly re-enables it). Packages will then be considered based on
261 ## repository priority and version only. This may easily damage your system.
262 ##
263 ## CHANGING THE DEFAULT IS NOT RECOMMENDED.
264 ##
265 ## Valid values:  boolean
266 ## Default value: false
267 ##
268 # solver.allowVendorChange = false
269
270 ##
271 ## EXPERTS ONLY: Cleanup when deleting packages. Whether the solver should
272 ## per default try to remove packages exclusively required by the ones he's
273 ## asked to delete.
274 ##
275 ## This option should be used on a case by case basis, enabled via
276 ## command line options or switches the applications offer. Changing
277 ## the global default on a system where unattended actions are performed,
278 ## may easily damage your system.
279 ##
280 ## CHANGING THE DEFAULT IS NOT RECOMMENDED.
281 ##
282 ## Valid values:  boolean
283 ## Default value: false
284 ##
285 # solver.cleandepsOnRemove = false
286
287 ##
288 ## This file contains requirements/conflicts which fulfill the
289 ## needs of a running system.
290 ## For example the system would be broken if not glibc or kernel is
291 ## installed.
292 ## So the user will be informed if these packages will be deleted.
293 ##
294 ## Format: Each line represents one dependency:
295 ##         e.g.
296 ##         requires:kernel
297 ##         requires:glibc
298 ## Default value: {configdir}/systemCheck
299 ##
300 # solver.checkSystemFile = /etc/zypp/systemCheck
301
302 ##
303 ## When committing a dist upgrade (e.g. 'zypper dup') a solver testcase
304 ## is written to /var/log/updateTestcase-<date>. It is needed in bugreports.
305 ## This optin returns the number of testcases to keep on the system. Old
306 ## cases will be deleted, as new ones are created.
307 ##
308 ## Use 0 to write no testcase at all, or -1 to keep all testcases.
309 ##
310 ## Valid values:        Integer
311 ## Default value:       2
312 ##
313 # solver.upgradeTestcasesToKeep = 2
314
315 ##
316 ## Whether dist upgrade should remove a products dropped packages.
317 ##
318 ## A new product may suggest a list of old and no longer supported
319 ## packages (dropped packages). Performing a dist upgrade the solver
320 ## may try to delete them, even if they do not cause any dependency
321 ## problem.
322 ##
323 ## Turning this option off, the solver will not try to remove those
324 ## packages unless they actually do cause dependency trouble. You may
325 ## do the cleanup manually, or simply leave them installed as long
326 ## as you don't need the disk space.
327 ##
328 ## Valid values:        Boolean
329 ## Default value:       true
330 ##
331 # solver.upgradeRemoveDroppedPackages = true
332
333 ##
334 ## Packages which can be installed in different versions at the same time.
335 ##
336 ## Packages are selected either by name, or by provides. In the later case
337 ## the string must start with "provides:" immediately followed by the capability.
338 ##
339 ## Example:
340 ##      kernel                          - just packages whith name 'kernel'
341 ##      provides:multiversion(kernel)   - all packages providing 'multiversion(kernel)'
342 ##                                        (kenel and kmp packages should do this)
343 ## Valid values:
344 ##      Comma separated list of packages.
345 ##
346 ## Default value:
347 ##      empty
348 ##
349 # multiversion = provides:multiversion(kernel)
350
351 ##
352 ## Path to locks file. If not exist then is create.
353 ## In this file is saved also UI locks.
354 ##
355 ## valid value: path to file or place where file can be created
356 ## default value: {configdir}/locks
357 ##
358 # locksfile.path = /etc/zypp/locks
359
360 ##
361 ## Whetever to apply locks in locks file after zypp start.
362 ##
363 ## Valid values: boolean
364 ## Default value: true
365 ##
366 # locksfile.apply = true
367
368 ##
369 ## Where update items are stored
370 ## (example: scripts, messages)
371 ##
372 ## Valid values: path to directory
373 ## Default value: /var/adm
374 ##
375 # update.datadir = /var/adm
376
377 ##
378 ## Where update messages are stored
379 ##
380 ## Valid values: path to directory
381 ## Default value: {update.datadir}/update-messages
382 ##
383 # update.messagesdir = /var/adm/update-messages
384
385 ##
386 ## Where update scripts are stored
387 ##
388 ## Valid values: path to directory
389 ## Default value: {update.datadir}/update-scripts
390 ##
391 # update.scriptsdir = /var/adm/update-scripts
392
393 ##
394 ## Command to be invoked to send update messages.
395 ##
396 ## Packages may leave an update message file in {update.messagesdir}.
397 ## At the end of each commit, zypp collects those messages and may send
398 ## a notification to the user.
399 ##
400 ## zypp will prepare the update messages according to the selected
401 ## content format and pipe the content to the command.
402 ##
403 ## Format:
404 ##     single - For each update message invoke the command and send
405 ##              the message.
406 ##     none   - For each update message invoke the command but don't
407 ##              use a pipe to send any data. You probably want to pass
408 ##              the message file on the commandline using %P (see
409 ##              Substitutions).
410 ##     digest - Single invocation of the command, sending the path
411 ##              names of all update message. One per line.
412 ##     bulk   - Single invocation of the command, sending the
413 ##              concatenated content of all update messages, separated
414 ##              by Ctrl-L.
415 ##
416 ## Substitutions:
417 ##     %p     - package identification (name-version-release.arch)
418 ##     %P     - full path to the update message file
419 ##
420 ## Valid values: The value is specified as "format | command".
421 ##               An empty value will turn off any notification.
422 ##
423 ## Examples:     single | mail -s 'Update message from %p' root
424 ##               none   | my-send-script -f %P
425 ##
426 ## Default value: single | /usr/lib/zypp/notify-message -p %p
427 ##
428 # update.messages.notify = single | /usr/lib/zypp/notify-message -p %p
429
430 ##
431 ## Options for package installation: excludedocs
432 ##
433 ## Don't install any files which are marked as documentation.
434 ##
435 ## Valid values:  boolean
436 ## Default value: no
437 ##
438 # rpm.install.excludedocs = no
439
440 ##
441 ## Location of history log file.
442 ##
443 ## The history log is described at
444 ## http://en.opensuse.org/Libzypp/Package_History
445 ##
446 ## Valid values: absolute path to a file
447 ## Default value: /var/log/zypp/history
448 ##
449 # history.logfile = /var/log/zypp/history
450
451 ##
452 ## Global credentials directory path.
453 ##
454 ## If a URL contains ?credentials=<filename> parameter, the credentials will
455 ## be stored and looked for in a file named <filename> in this directory.
456 ##
457 ## Valid values: absolute path to a directory
458 ## Default value: /etc/zypp/credentials.d
459 ##
460 # credentials.global.dir = /etc/zypp/credentials.d
461
462 ##
463 ## Global credentials catalog file path.
464 ##
465 ## This file contains a catalog of all known user credentials which were
466 ## not stored via the ?credentials=<filename> URL parameter, i.e. passed
467 ## in URL as username:password component, or entered by user in
468 ## an authentication dialog.
469 ##
470 ## Valid values: absolute path to a file
471 ## Default value: /etc/zypp/credentials.cat
472 ##
473 # credentials.global.file = /etc/zypp/credentials.cat