Advertisement
Guest User

Pacman NightFobos

a guest
Sep 4th, 2014
603
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 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 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. #UseDelta = 0.7
  24. Architecture = auto
  25.  
  26. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  27. #IgnorePkg =
  28. #IgnoreGroup =
  29.  
  30. #NoUpgrade =
  31. #NoExtract =
  32.  
  33. # Misc options
  34. ILoveCandy
  35. #UseSyslog
  36. #Color
  37. #TotalDownload
  38. CheckSpace
  39. #VerbosePkgLists
  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 = Never
  72. Include = /etc/pacman.d/mirrorlist
  73.  
  74. [extra]
  75. SigLevel = Never
  76. Include = /etc/pacman.d/mirrorlist
  77.  
  78. [community]
  79. SigLevel = Never
  80. Include = /etc/pacman.d/mirrorlist
  81.  
  82. [archlinuxfr]
  83. SigLevel = Never
  84. Server = http://repo.archlinux.fr/$arch
  85.  
  86.  
  87. # An example of a custom package repository. See the pacman manpage for
  88. # tips on creating your own repositories.
  89. #[custom]
  90. #SigLevel = Never
  91. #Server = file:///home/custompkgs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement