gespadas

/etc/pacman.conf (Pacman 4)

Feb 24th, 2012
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.02 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. Architecture = auto
  24.  
  25. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  26. #IgnorePkg   =
  27. #IgnoreGroup =
  28.  
  29. #NoUpgrade   =
  30. #NoExtract   =
  31.  
  32. # Misc options
  33. #UseSyslog
  34. #UseDelta
  35. #TotalDownload
  36. CheckSpace
  37. #VerbosePkgLists
  38. ILoveCandy
  39.  
  40. # PGP signature checking
  41. # NOTE: None of this will work without running `pacman-key --init` first.
  42. # The compiled in default is equivalent to the following line. This requires
  43. # you to locally sign and trust packager keys using `pacman-key` for them to be
  44. # considered valid.
  45. #SigLevel = Optional TrustedOnly
  46. # If you wish to check signatures but avoid local sign and trust issues, use
  47. # the following line. This will treat any key imported into pacman's keyring as
  48. # trusted.
  49. #SigLevel = Optional TrustAll
  50. # For now, off by default unless you read the above.
  51. SigLevel = Never
  52.  
  53. #
  54. # REPOSITORIES
  55. #   - can be defined here or included from another file
  56. #   - pacman will search repositories in the order defined here
  57. #   - local/custom mirrors can be added here or in separate files
  58. #   - repositories listed first will take precedence when packages
  59. #     have identical names, regardless of version number
  60. #   - URLs will have $repo replaced by the name of the current repo
  61. #   - URLs will have $arch replaced by the name of the architecture
  62. #
  63. # Repository entries are of the format:
  64. #       [repo-name]
  65. #       Server = ServerName
  66. #       Include = IncludePath
  67. #
  68. # The header [repo-name] is crucial - it must be present and
  69. # uncommented to enable the repo.
  70. #
  71.  
  72. # The testing repositories are disabled by default. To enable, uncomment the
  73. # repo name header and Include lines. You can add preferred servers immediately
  74. # after the header, and they will be used before the default mirrors.
  75.  
  76. #[testing]
  77. #SigLevel = PackageRequired
  78. #Include = /etc/pacman.d/mirrorlist
  79.  
  80. [core]
  81. #SigLevel = PackageRequired
  82. Include = /etc/pacman.d/mirrorlist
  83.  
  84. [extra]
  85. #SigLevel = PackageOptional
  86. Include = /etc/pacman.d/mirrorlist
  87.  
  88. #[community-testing]
  89. #SigLevel = PackageRequired
  90. #Include = /etc/pacman.d/mirrorlist
  91.  
  92. [community]
  93. #SigLevel = PackageOptional
  94. Include = /etc/pacman.d/mirrorlist
  95.  
  96. # An example of a custom package repository.  See the pacman manpage for
  97. # tips on creating your own repositories.
  98. #[custom]
  99. #SigLevel = Optional TrustAll
  100. #Server = file:///home/custompkgs
Advertisement
Add Comment
Please, Sign In to add comment