Advertisement
Guest User

Untitled

a guest
Sep 20th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 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. #XferCommand = /usr/bin/curl -C - -f %u > %o
  20. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  21. #CleanMethod = KeepInstalled
  22. Architecture = auto
  23.  
  24. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  25. #IgnorePkg =
  26. #IgnoreGroup =
  27.  
  28. #NoUpgrade =
  29. #NoExtract =
  30.  
  31. # Misc options
  32. #UseSyslog
  33. #UseDelta
  34. #TotalDownload
  35. CheckSpace
  36. #VerbosePkgLists
  37.  
  38. # By default, pacman accepts packages signed by keys that its local keyring
  39. # trusts (see pacman-key and its man page), as well as unsigned packages.
  40. #SigLevel = Never
  41.  
  42. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  43. # keyring can then be populated with the keys of all official Arch Linux
  44. # packagers with `pacman-key --populate archlinux`.
  45.  
  46. #
  47. # REPOSITORIES
  48. # - can be defined here or included from another file
  49. # - pacman will search repositories in the order defined here
  50. # - local/custom mirrors can be added here or in separate files
  51. # - repositories listed first will take precedence when packages
  52. # have identical names, regardless of version number
  53. # - URLs will have $repo replaced by the name of the current repo
  54. # - URLs will have $arch replaced by the name of the architecture
  55. #
  56. # Repository entries are of the format:
  57. # [repo-name]
  58. # Server = ServerName
  59. # Include = IncludePath
  60. #
  61. # The header [repo-name] is crucial - it must be present and
  62. # uncommented to enable the repo.
  63. #
  64.  
  65. # The testing repositories are disabled by default. To enable, uncomment the
  66. # repo name header and Include lines. You can add preferred servers immediately
  67. # after the header, and they will be used before the default mirrors.
  68.  
  69. #[testing]
  70. #SigLevel = Optional TrustAll
  71. #Include = /etc/pacman.d/mirrorlist
  72.  
  73. [core]
  74. SigLevel = Never
  75. Include = /etc/pacman.d/mirrorlist
  76.  
  77. [extra]
  78. SigLevel = Never
  79. Include = /etc/pacman.d/mirrorlist
  80.  
  81. #[community-testing]
  82. #SigLevel = Optional TrustAll
  83. #Include = /etc/pacman.d/mirrorlist
  84.  
  85. [community]
  86. SigLevel = Never
  87. Include = /etc/pacman.d/mirrorlist
  88.  
  89. #[multilib-testing]
  90. #SigLevel = Optional TrustAll
  91. #Include = /etc/pacman.d/mirrorlist
  92.  
  93. [multilib]
  94. SigLevel = Never
  95. Include = /etc/pacman.d/mirrorlist
  96.  
  97. [archlinuxfr]
  98. SigLevel = Never
  99. Server = http://repo.archlinux.fr/$arch
  100.  
  101. # An example of a custom package repository. See the pacman manpage for
  102. # tips on creating your own repositories.
  103. #[custom]
  104. #SigLevel = Optional TrustAll
  105. #Server = file:///home/custompkgs
  106.  
  107. [kademar-common]
  108. SigLevel = Never
  109. Server = http://heliox.proyectoheliox.org/repo/common
  110. Server = http://packages.cladellas.org/repo/common
  111.  
  112. [kademar-specific]
  113. SigLevel = Never
  114. Server = http://heliox.proyectoheliox.org/repo/$arch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement