Advertisement
ringo32

Untitled

Aug 22nd, 2015
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 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 manjaro-system
  18. # If upgrades are available for these packages they will be asked for first
  19. SyncFirst = manjaro-system
  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 = gtk2-xfce-engine
  28. #IgnoreGroup =
  29.  
  30. #NoUpgrade =
  31. #NoExtract =
  32.  
  33. # Misc options
  34. #UseSyslog
  35. Color
  36. #TotalDownload
  37. CheckSpace
  38. #VerbosePkgLists
  39. ILoveCandy
  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 Manjaro Linux
  49. # packagers with `pacman-key --populate archlinux manjaro`.
  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. [core]
  71. SigLevel = PackageRequired
  72. Include = /etc/pacman.d/mirrorlist
  73.  
  74. [extra]
  75. SigLevel = PackageRequired
  76. Include = /etc/pacman.d/mirrorlist
  77.  
  78. [community]
  79. SigLevel = PackageRequired
  80. Include = /etc/pacman.d/mirrorlist
  81.  
  82. # If you want to run 32 bit applications on your x86_64 system,
  83. # enable the multilib repositories as required here.
  84.  
  85. [multilib]
  86. SigLevel = PackageRequired
  87. Include = /etc/pacman.d/mirrorlist
  88.  
  89. # An example of a custom package repository. See the pacman manpage for
  90. # tips on creating your own repositories.
  91.  
  92. [kde-next]
  93. SigLevel = PackageRequired
  94. Server = http://downloads.sourceforge.net/project/manjarotest/packages/$repo/$arch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement