diff options
author | Dan McGee <dan@archlinux.org> | 2007-11-06 04:20:16 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-11-06 05:09:05 +0100 |
commit | bdab234d977dd2e9417a39f5191e495d5c460ee7 (patch) | |
tree | 59e2e0adb6e8f3bf165bfa102f31c805230d715c | |
parent | 52b7fd81f55c3f27823c824da4d70c6edabefb52 (diff) | |
download | pacman-bdab234d977dd2e9417a39f5191e495d5c460ee7.tar.gz pacman-bdab234d977dd2e9417a39f5191e495d5c460ee7.tar.xz |
Comment out paths by default in pacman.conf
Now that all paths are defined to reasonable defaults at compile time by
pacman, we shouldn't force users to have RootDir, DBPath, etc. in their
default pacman.conf although these options are always available.
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | etc/pacman.conf.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/etc/pacman.conf.in b/etc/pacman.conf.in index 7a775bfe..a072db13 100644 --- a/etc/pacman.conf.in +++ b/etc/pacman.conf.in @@ -7,10 +7,12 @@ # GENERAL OPTIONS # [options] -RootDir = @ROOTDIR@ -DBPath = @localstatedir@/lib/pacman/ -CacheDir = @localstatedir@/cache/pacman/pkg/ -LogFile = @localstatedir@/log/pacman.log +# The following paths are commented out with their default values listed. +# If you wish to use different paths, uncomment and update the paths. +#RootDir = @ROOTDIR@ +#DBPath = @localstatedir@/lib/pacman/ +#CacheDir = @localstatedir@/cache/pacman/pkg/ +#LogFile = @localstatedir@/log/pacman.log HoldPkg = pacman glibc #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u |