Create live-image for Grit OS

pacman.conf 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. #
  2. # /etc/pacman.conf
  3. #
  4. # See the pacman.conf(5) manpage for option and repository directives
  5. #
  6. # GENERAL OPTIONS
  7. #
  8. [options]
  9. # The following paths are commented out with their default values listed.
  10. # If you wish to use different paths, uncomment and update the paths.
  11. #RootDir = /
  12. #DBPath = /var/lib/pacman/
  13. #CacheDir = /var/cache/pacman/pkg/
  14. #LogFile = /var/log/pacman.log
  15. #GPGDir = /etc/pacman.d/gnupg/
  16. HoldPkg = pacman glibc
  17. #XferCommand = /usr/bin/curl -C - -f %u > %o
  18. #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
  19. #CleanMethod = KeepInstalled
  20. #UseDelta = 0.7
  21. Architecture = auto
  22. # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
  23. #IgnorePkg =
  24. #IgnoreGroup =
  25. #NoUpgrade =
  26. #NoExtract =
  27. # Misc options
  28. #UseSyslog
  29. #Color
  30. #TotalDownload
  31. # We cannot check disk space from within a chroot environment
  32. #CheckSpace
  33. #VerbosePkgLists
  34. # By default, pacman accepts packages signed by keys that its local keyring
  35. # trusts (see pacman-key and its man page), as well as unsigned packages.
  36. SigLevel = Required DatabaseOptional
  37. LocalFileSigLevel = Optional
  38. #RemoteFileSigLevel = Required
  39. # NOTE: You must run `pacman-key --init` before first using pacman; the local
  40. # keyring can then be populated with the keys of all official Arch Linux
  41. # packagers with `pacman-key --populate archlinux`.
  42. #
  43. # REPOSITORIES
  44. # - can be defined here or included from another file
  45. # - pacman will search repositories in the order defined here
  46. # - local/custom mirrors can be added here or in separate files
  47. # - repositories listed first will take precedence when packages
  48. # have identical names, regardless of version number
  49. # - URLs will have $repo replaced by the name of the current repo
  50. # - URLs will have $arch replaced by the name of the architecture
  51. #
  52. # Repository entries are of the format:
  53. # [repo-name]
  54. # Server = ServerName
  55. # Include = IncludePath
  56. #
  57. # The header [repo-name] is crucial - it must be present and
  58. # uncommented to enable the repo.
  59. #
  60. # The testing repositories are disabled by default. To enable, uncomment the
  61. # repo name header and Include lines. You can add preferred servers immediately
  62. # after the header, and they will be used before the default mirrors.
  63. # custom repository
  64. [customrepo]
  65. SigLevel = Optional TrustAll
  66. Server = file:///home/bryan/projects/grit-iso/customrepo/$arch
  67. #[testing]
  68. #Include = /etc/pacman.d/mirrorlist
  69. [core]
  70. Include = /etc/pacman.d/mirrorlist
  71. [extra]
  72. Include = /etc/pacman.d/mirrorlist
  73. #[community-testing]
  74. #Include = /etc/pacman.d/mirrorlist
  75. [community]
  76. Include = /etc/pacman.d/mirrorlist
  77. # An example of a custom package repository. See the pacman manpage for
  78. # tips on creating your own repositories.
  79. #[custom]
  80. #SigLevel = Optional TrustAll
  81. #Server = file:///home/custompkgs