| 1 | config_opts['root'] = 'ngrid-i386' |
|---|
| 2 | config_opts['target_arch'] = 'i386' |
|---|
| 3 | config_opts['chroot_setup_cmd'] = 'install buildsys-build' |
|---|
| 4 | config_opts['useradd'] = '/usr/sbin/useradd -m -u %(uid)s -g %(gid)s -d %(home)s -n %(user)s' |
|---|
| 5 | config_opts['dist'] = 'el5' # only useful for --resultdir variable subst |
|---|
| 6 | |
|---|
| 7 | config_opts['yum.conf'] = """ |
|---|
| 8 | [main] |
|---|
| 9 | cachedir=/var/cache/yum |
|---|
| 10 | debuglevel=1 |
|---|
| 11 | logfile=/var/log/yum.log |
|---|
| 12 | reposdir=/dev/null |
|---|
| 13 | retries=20 |
|---|
| 14 | obsoletes=1 |
|---|
| 15 | gpgcheck=0 |
|---|
| 16 | assumeyes=1 |
|---|
| 17 | |
|---|
| 18 | # repos |
|---|
| 19 | |
|---|
| 20 | [core] |
|---|
| 21 | name=base |
|---|
| 22 | mirrorlist=http://mirrorlist.centos.org/?release=5&arch=i386&repo=os |
|---|
| 23 | |
|---|
| 24 | [update] |
|---|
| 25 | name=updates |
|---|
| 26 | mirrorlist=http://mirrorlist.centos.org/?release=5&arch=i386&repo=updates |
|---|
| 27 | |
|---|
| 28 | [groups] |
|---|
| 29 | name=groups |
|---|
| 30 | baseurl=http://buildsys.fedoraproject.org/buildgroups/rhel5/i386/ |
|---|
| 31 | |
|---|
| 32 | [extras] |
|---|
| 33 | name=epel |
|---|
| 34 | #mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-5&arch=i386 |
|---|
| 35 | baseurl=http://mirror.yandex.ru/epel/5/i386/ |
|---|
| 36 | |
|---|
| 37 | [testing] |
|---|
| 38 | name=epel-testing |
|---|
| 39 | enabled=0 |
|---|
| 40 | mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=testing-epel5&arch=i386 |
|---|
| 41 | |
|---|
| 42 | [local] |
|---|
| 43 | name=local |
|---|
| 44 | baseurl=http://kojipkgs.fedoraproject.org/repos/dist-5E-epel-build/latest/i386/ |
|---|
| 45 | cost=2000 |
|---|
| 46 | enabled=0 |
|---|
| 47 | |
|---|
| 48 | [ngrid] |
|---|
| 49 | name=ngrid |
|---|
| 50 | baseurl=http://koji.ngrid.ru/dist-el5/i386/ |
|---|
| 51 | enabled=1 |
|---|
| 52 | |
|---|
| 53 | [ngrid-testing] |
|---|
| 54 | name=ngrid-testing |
|---|
| 55 | baseurl=http://koji.ngrid.ru/dist-el5-testing/i386/ |
|---|
| 56 | enabled=1 |
|---|
| 57 | |
|---|
| 58 | """ |
|---|