Advertisement
Guest User

Untitled

a guest
May 24th, 2012
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. ...
  2. # PGP signature checking
  3. # NOTE: None of this will work without running `pacman-key --init` first.
  4. # The compiled in default is equivalent to the following line. This requires
  5. # you to locally sign and trust packager keys using `pacman-key` for them to be
  6. # considered valid.
  7. #SigLevel = Optional TrustedOnly
  8. # If you wish to check signatures but avoid local sign and trust issues, use
  9. # the following line. This will treat any key imported into pacman's keyring as
  10. # trusted.
  11. #SigLevel = Optional TrustAll
  12. # For now, off by default unless you read the above.
  13. SigLevel = Never
  14.  
  15. #
  16. # REPOSITORIES
  17. # - can be defined here or included from another file
  18. # - pacman will search repositories in the order defined here
  19. # - local/custom mirrors can be added here or in separate files
  20. # - repositories listed first will take precedence when packages
  21. # have identical names, regardless of version number
  22. # - URLs will have $repo replaced by the name of the current repo
  23. # - URLs will have $arch replaced by the name of the architecture
  24. #
  25. # Repository entries are of the format:
  26. # [repo-name]
  27. # Server = ServerName
  28. # Include = IncludePath
  29. #
  30. # The header [repo-name] is crucial - it must be present and
  31. # uncommented to enable the repo.
  32. #
  33.  
  34. # The testing repositories are disabled by default. To enable, uncomment the
  35. # repo name header and Include lines. You can add preferred servers immediately
  36. # after the header, and they will be used before the default mirrors.
  37.  
  38. #[testing]
  39. #SigLevel = PackageRequired
  40. #Include = /etc/pacman.d/mirrorlist
  41.  
  42. [core]
  43. #SigLevel = PackageRequired
  44. Include = /etc/pacman.d/mirrorlist
  45.  
  46. [extra]
  47. #SigLevel = PackageOptional
  48. Include = /etc/pacman.d/mirrorlist
  49.  
  50. #[community-testing]
  51. #SigLevel = PackageRequired
  52. #Include = /etc/pacman.d/mirrorlist
  53.  
  54. [community]
  55. #SigLevel = PackageOptional
  56. Include = /etc/pacman.d/mirrorlist
  57.  
  58. # An example of a custom package repository. See the pacman manpage for
  59. # tips on creating your own repositories.
  60. #[custom]
  61. #SigLevel = Optional TrustAll
  62. #Server = file:///home/custompkgs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement