spacepaste

  1.  
  2. #
  3. # /etc/pacman.conf
  4. #
  5. # See the pacman.conf(5) manpage for option and repository directives
  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. #HookDir = /etc/pacman.d/hooks/
  18. HoldPkg = pacman glibc manjaro-system
  19. # If upgrades are available for these packages they will be asked for first
  20. SyncFirst = manjaro-system archlinux-keyring manjaro-keyring
  21. #XferCommand = /usr/bin/curl -C - -f %u > %o
  22. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  23. #CleanMethod = KeepInstalled
  24. #UseDelta = 0.7
  25. Architecture = auto
  26. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  27. #IgnorePkg =
  28. #IgnoreGroup =
  29. #NoUpgrade =
  30. #NoExtract =
  31. # Misc options
  32. #UseSyslog
  33. #Color
  34. #TotalDownload
  35. # We cannot check disk space from within a chroot environment
  36. CheckSpace
  37. #VerbosePkgLists
  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 = Required DatabaseOptional
  41. LocalFileSigLevel = Optional
  42. #RemoteFileSigLevel = Required
  43. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  44. # keyring can then be populated with the keys of all official Manjaro Linux
  45. # packagers with `pacman-key --populate archlinux manjaro`.
  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. # The testing repositories are disabled by default. To enable, uncomment the
  65. # repo name header and Include lines. You can add preferred servers immediately
  66. # after the header, and they will be used before the default mirrors.
  67. [core]
  68. SigLevel = PackageRequired
  69. Include = /etc/pacman.d/mirrorlist
  70. [extra]
  71. SigLevel = PackageRequired
  72. Include = /etc/pacman.d/mirrorlist
  73. [community]
  74. SigLevel = PackageRequired
  75. Include = /etc/pacman.d/mirrorlist
  76. # If you want to run 32 bit applications on your x86_64 system,
  77. # enable the multilib repositories as required here.
  78. [multilib]
  79. SigLevel = PackageRequired
  80. Include = /etc/pacman.d/mirrorlist
  81. # An example of a custom package repository. See the pacman manpage for
  82. # tips on creating your own repositories.
  83. #[custom]
  84. #SigLevel = Optional TrustAll
  85. #Server = file:///home/custompkgs
  86.