diff options
author | jcwillia <jcwillia> | 2006-08-17 17:06:37 +0000 |
---|---|---|
committer | jcwillia <jcwillia> | 2006-08-17 17:06:37 +0000 |
commit | 7dfc6eafd60ec69b633ac5285fba552597d5507e (patch) | |
tree | 09d305aef5a35c5851a629281116083abe04ec48 | |
parent | 9ff2b8416b9d02e26b1acdf5e6b8e2cb91b36290 (diff) | |
download | mock-7dfc6eafd60ec69b633ac5285fba552597d5507e.tar.gz mock-7dfc6eafd60ec69b633ac5285fba552597d5507e.tar.xz mock-7dfc6eafd60ec69b633ac5285fba552597d5507e.zip |
template config for rhl8
-rw-r--r-- | etc/redhat-8-i386.cfg | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/etc/redhat-8-i386.cfg b/etc/redhat-8-i386.cfg new file mode 100644 index 0000000..a217588 --- /dev/null +++ b/etc/redhat-8-i386.cfg @@ -0,0 +1,32 @@ +#!/usr/bin/python -tt +import os +config_opts['root'] = 'redhat-8-i386' +config_opts['target_arch'] = 'i386' + + +config_opts['yum.conf'] = """ +[main] +cachedir=/var/cache/yum +debuglevel=1 +logfile=/var/log/yum.log +reposdir=/dev/null +retries=20 +obsoletes=1 +gpgcheck=0 +assumeyes=1 + +# repos + +[core] +name=core +baseurl=http://<fill in your URL here>/redhat/8/os/i386/ + +[updates-released] +name=updates +baseurl=http://<fill in your URL here>/redhat/8/updates/i386/ + +[groups] +name=groups +baseurl=http://<fill in your URL here>/buildgroups/rh8/i386/ + +""" |