/etc/zypp/zypper.conf is in zypper-common 1.11.13-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | ## Configuration file for Zypper.
##
## location: /etc/zypp/zypper.conf (system-wide)
## or: $HOME/.zypper.conf (user-specific)
##
## You can edit this file by hand (try to keep the structure) or by using
## 'zypper conf' command (TODO). If you need user-specific configuration
## and you do not have ~/.zypper.conf yet, use /etc/zypp/zypper.conf
## as template (copy it to ~/.zypper.conf) and adjust to your liking.
##
## The options known also to libzypp will be overriden by zypper.conf, if set.
##
## Boolean values are:
## 0 1 yes no on off true false
## Color values are:
## white grey darkgrey black red green blue yellow brown cyan purple
## lightred lightgreen lightblue lightcyan lightpurple
[main]
## Show repository alias instead of name.
##
## Alias is an alternative unique name of repository. Some users prefer
## to define short, handy aliases for their repositories and use them
## when specifying repositories instead of number, name, or URI.
## These users might want to set this option to 'true'.
##
## Other users prefer to keep the aliases and names set by installation,
## registration, YaST, or other software managers, or .repo files (most
## software managers even hide the alias from user's view).
## These users might want to see the descriptive names, thus leave this
## option set to 'false'.
##
## Setting this option to 'true' will tell zypper to show repository
## alias instead of the long name wherever it needs to tell the name of
## the repository.
##
## Valid values: true, false
## Default value: false
##
# showAlias = false
## Columns to show in repository list printed by repos (lr) command by default.
##
## The # (number) and Enabled column is shown always. The following columns
## can be configured:
##
## a - alias - the shorthand for name and unique identifier
## n - name - full name of the repository
## r - autorefresh?
## u - URL
## p - priority
##
## Valid values: any combination of the above letters; capital letter marks
## column by which the table will be sorted (if multiple
## are used the sorting is undefined).
## Default value: Anr
##
# repoListColumns = Anr
[solver]
## Do not install soft dependencies (recommended packages)
##
## Valid values: boolean
## Default value: yes
##
# installRecommends = yes
## Commands in which to force resolution.
##
## Comma-separated list of commands in which the resolution should be forced
## when solving package dependencies. This means the solver
## will automatically opt to remove problematic packages instead
## of asking the user how to resolve the dependency problem.
##
## This is particularly useful in the 'remove' command, since one
## typically wants to remove the requested package and all the packages
## which depend on it, without being asked. But one may find it convenient
## to force the resolution also in the 'install' command, or perhaps even
## others.
##
## This setting can be overridden ad-hoc by the --force-resolution and
## --no-force-resolution command line options.
##
## Valid values: remove, install, update, patch, verify
## Default value: remove
# forceResolutionCommands = remove
[color]
## Whether to use colors
##
## Valid values: always, never, or autodetect
## Default value: never
##
# useColors = never
## Do you use dark or light terminal background?
##
## Valid values: dark light
## Default value: dark
##
# background = dark
## Color for displaying results of operations.
## This includes installation summary, tables, and result messages.
##
## Valid values: color
## Default value: white
##
# result = white
## Color for displaying status and progress messages.
##
## Valid values: color
## Default value: grey
##
# msgStatus = grey
## Color for displaying error messages.
##
## Valid values: color
## Default value: red
##
# msgError = red
## Color for displaying warnings.
##
## Valid values: color
## Default value: purple
##
# msgWarning = purple
## Color for highlighting positive information.
## For example, 'done' result of progress indicator.
## (not used yet)
##
## Default value: green
##
# positive = green
## Color for highlighting negative information.
## For example, 'error' result of progress indicator.
## (not used yet)
##
## Valid values: color
## Default value: red
##
# negative = red
## Color for highlighting information for easier reading.
## Unlike positive/negative color, this is intended for neutral information,
## like highlighting table column by which the rows are sorted.
##
## Valid values: color
## Default value: lightcyan
##
# highlight = lightcyan
## Color for user dialog options.
##
## Valid values: color
## Default value: grey
##
# promptOption = grey
[obs]
## openSUSE Build Service repository base URL.
## This is used to construct real URL from obs://project/platform URI
##
# baseUrl = http://download.opensuse.org/repositories/
## openSUSE Build Service repository target platform.
## This will be used if none is given in the obs://obsrepo/platform URI
## when adding new repository with 'addrepo' command.
##
# platform = openSUSE_11.3
|