summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2009-01-29 15:07:17 -0500
committerWill Woods <wwoods@redhat.com>2009-01-29 15:07:17 -0500
commit67227cf432acac3fb3d639ae1fe182816ed0677b (patch)
tree5b5125e58e57fcd60d00f0f12b4f1b1a786d6a91
parent63a944f11633b50afac5a36c543540937f874721 (diff)
downloaddebuginfofs-67227cf432acac3fb3d639ae1fe182816ed0677b.tar.gz
debuginfofs-67227cf432acac3fb3d639ae1fe182816ed0677b.tar.xz
debuginfofs-67227cf432acac3fb3d639ae1fe182816ed0677b.zip
add README
-rw-r--r--README26
1 files changed, 26 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..8879236
--- /dev/null
+++ b/README
@@ -0,0 +1,26 @@
+Fetching data for a debuginfofs server: the easy way
+1) edit config.sh - the defaults should be fine for most people.
+2) edit rsync-fedora-debuginfo.sh
+ - Change 'server' to something closer to you
+ - If you need something other than Fedora, you're on your own.
+
+Fetching data for a debuginfofs server: complete instructions
+1) edit config.sh - again, the defaults should be fine for most people.
+2) Fetch all the debuginfo RPMs somewhere
+ - If you've got them on an NFS mount somewhere, this is easy.
+ - Eventually there'll be a 'fetch-debuginfo-rpms' script that will do the
+ right thing for Fedora or RHEL, let you use http/ftp mirrors, etc.
+ - For now: you're on your own.
+3) find $rpmdir -name "*.rpm" -exec ./unpack-debuginfo.sh my-debuginfo-dir {} +
+4) ./make-links.sh my-debuginfo-dir
+
+Running the debuginfofs server
+1) cp dav-debuginfo.conf /etc/httpd/conf.d
+ - Make sure the Alias line matches exportdir in config.sh
+2) service httpd start
+
+Mounting the debuginfofs on the client
+1) cp debuginfofs.init /etc/init.d
+2) cp debuginfofs.sysconfig /etc/sysconfig/debuginfofs
+ - Make sure DEBUGINFOFS_HOST matches your server
+3) service debuginfofs start