mokhtar_one

pacman.conf

Aug 1st, 2013
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. #
  2. # /etc/pacman.conf
  3. #
  4. # See the pacman.conf(5) manpage for option and repository directives
  5.  
  6. #
  7. # GENERAL OPTIONS
  8. #
  9. [options]
  10. # The following paths are commented out with their default values listed.
  11. # If you wish to use different paths, uncomment and update the paths.
  12. #RootDir = /
  13. #DBPath = /var/lib/pacman/
  14. #CacheDir = /var/cache/pacman/pkg/
  15. #LogFile = /var/log/pacman.log
  16. #GPGDir = /etc/pacman.d/gnupg/
  17. #HoldPkg = pacman glibc
  18. # If upgrades are available for these packages they will be asked for first
  19. #SyncFirst = pacman
  20. #XferCommand = /usr/bin/curl -C - -f %u > %o
  21. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  22. #CleanMethod = KeepInstalled
  23. #UseDelta = 0.7
  24. Architecture = auto
  25.  
  26. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  27. #IgnorePkg =
  28. #IgnoreGroup =
  29.  
  30. #NoUpgrade =
  31. #NoExtract =
  32.  
  33. # Misc options
  34. #UseSyslog
  35. #Color
  36. #TotalDownload
  37. CheckSpace
  38. ILoveCandy
  39. #VerbosePkgLists
  40.  
  41. # By default, pacman accepts packages signed by keys that its local keyring
  42. # trusts (see pacman-key and its man page), as well as unsigned packages.
  43. SigLevel = Required DatabaseOptional
  44. LocalFileSigLevel = Optional
  45. #RemoteFileSigLevel = Required
  46.  
  47. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  48. # keyring can then be populated with the keys of all official Arch Linux
  49. # packagers with `pacman-key --populate archlinux`.
  50.  
  51. #
  52. # REPOSITORIES
  53. # - can be defined here or included from another file
  54. # - pacman will search repositories in the order defined here
  55. # - local/custom mirrors can be added here or in separate files
  56. # - repositories listed first will take precedence when packages
  57. # have identical names, regardless of version number
  58. # - URLs will have $repo replaced by the name of the current repo
  59. # - URLs will have $arch replaced by the name of the architecture
  60. #
  61. # Repository entries are of the format:
  62. # [repo-name]
  63. # Server = ServerName
  64. # Include = IncludePath
  65. #
  66. # The header [repo-name] is crucial - it must be present and
  67. # uncommented to enable the repo.
  68. #
  69.  
  70. # The testing repositories are disabled by default. To enable, uncomment the
  71. # repo name header and Include lines. You can add preferred servers immediately
  72. # after the header, and they will be used before the default mirrors.
  73.  
  74. [testing]
  75. SigLevel = PackageRequired
  76. Include = /etc/pacman.d/mirrorlist
  77.  
  78. [core]
  79. #SigLevel = PackageRequired
  80. Include = /etc/pacman.d/mirrorlist
  81.  
  82. [extra]
  83. #SigLevel = PackageRequired
  84. Include = /etc/pacman.d/mirrorlist
  85.  
  86. #[community-testing]
  87. #SigLevel = PackageRequired
  88. #Include = /etc/pacman.d/mirrorlist
  89.  
  90. [community]
  91. #SigLevel = PackageRequired
  92. Include = /etc/pacman.d/mirrorlist
  93.  
  94. [multilib]
  95. SigLevel = PackageRequired
  96. Include = /etc/pacman.d/mirrorlist
  97.  
  98. # An example of a custom package repository. See the pacman manpage for
  99. # tips on creating your own repositories.
  100. #[custom]
  101. #SigLevel = Optional TrustAll
  102. #Server = file:///home/custompkgs
  103.  
  104. [archlinuxfr]
  105. Server = http://repo.archlinux.fr/$arch
  106. SigLevel = Never
Advertisement
Add Comment
Please, Sign In to add comment