- Add zypp.conf option solvfilesdir: Path where the repo solv files
[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 known repositories .repo files are kept
63 ##
64 ## Valid values: A directory
65 ## Default value: /etc/zypp/repos.d
66 ##
67 ## Changing this invalidates all known repositories
68 ##
69 # reposdir = /etc/zypp/repos.d
70
71
72 ##
73 ## Whether repository urls should be probed when added
74 ##
75 ## Valid values: boolean
76 ## Default value: false
77 ##
78 ## If true, accessability of repositories is checked immediately (when added)
79 ##   (e.g. 'zypper ar' will check immediately)
80 ## If false, accessability of repositories is checked when refreshed
81 ##   (e.g. 'zypper ar' will delay the check until the next refresh)
82 ##
83 # repo.add.probe = false
84
85
86 ##
87 ## Amount of time in minutes that must pass before another refresh.
88 ##
89 ## Valid values: Integer
90 ## Default value: 10
91 ##
92 ## If you have autorefresh enabled for a repository, it is checked for
93 ## up-to-date metadata not more often than every <repo.refresh.delay>
94 ## minutes. If an automatic request for refresh comes before <repo.refresh.delay>
95 ## minutes passed since the last check, the request is ignored.
96 ##
97 ## A value of 0 means the repository will always be checked. To get the oposite
98 ## effect, disable autorefresh for your repositories.
99 ##
100 ## This option has no effect for repositories with autorefresh disabled, nor for
101 ## user-requested refresh.
102 ##
103 # repo.refresh.delay = 10
104
105
106 ##
107 ## Whether to consider using a .patch.rpm when downloading a package
108 ##
109 ## Valid values: boolean
110 ## Default value: true
111 ##
112 ## Using a patch rpm will decrease the download size for package updates
113 ## since it does not contain all files of the package but only the changed
114 ## ones. The .patch.rpm is ready to be installed immediately after download.
115 ## There is no further processing needed, as it is for a .delta.rpm.
116 ##
117 # download.use_patchrpm = true
118
119
120 ##
121 ## Whether to consider using a .delta.rpm when downloading a package
122 ##
123 ## Valid values: boolean
124 ## Default value: true
125 ##
126 ## Using a delta rpm will decrease the download size for package updates
127 ## since it does not contain all files of the package but only the binary
128 ## diff of changed ones. Recreating the rpm package on the local machine
129 ## is an expensive operation (memory,CPU). If your network connection is
130 ## not too slow, you benefit from disabling .delta.rpm.
131 ##
132 # download.use_deltarpm = true
133
134
135 ##
136 ## Defining directory for equivalent vendors
137 ##
138 ## Valid values: A directory
139 ## Default value: /etc/zypp/vendors.d
140 ##
141 # vendordir = /etc/zypp/vendors.d
142
143 ##
144 ## Whether required packages are installed ONLY
145 ## So recommended packages, language packages and packages which depend
146 ## on hardware (modalias) will not be regarded.
147 ##
148 ## Valid values: boolean
149 ## Default value: false
150 ##
151 # solver.onlyRequires = false
152
153 ##
154 ## Path to locks file. If not exist then is create.
155 ## In this file is saved also UI locks.
156 ##
157 ## valid value: path to file or place where file can be created
158 ## default value: /etc/zypp/locks
159 ##
160 # locksfile.path = /etc/zypp/locks
161
162 ##
163 ## Whetever to apply locks in locks file after zypp start.
164 ##
165 ## Valid values: boolean
166 ## Default value: true
167 ##
168 # locksfile.apply = true