3b77e1b3c5
This is being added as a separate element because RHEL 7 is too different from either RHEL 6 or Fedora to share all of the configuration they do. It uses the redhat-common element for pieces that are duplicated. Some current limitations of the element: -RHEL 7 is currently still in beta, so final image locations are not available. This currently defaults to the RHEL 6.5 image, but that will need to be overridden using the DIB_* env vars. -There are additional tripleo-image-elements changes that will be needed to be able to use this for building tripleo images. -Open vSwitch packages are not currently available in the official RHEL 7 repos. -RHEL does not support qemu without kvm acceleration, so at this time it cannot be used as a compute node for virtualized testing. Change-Id: I705fd475303576525a27ce6801c673b5721792c9
22 lines
396 B
Bash
Executable File
22 lines
396 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cat << EOF > /etc/yum.repos.d/rhel7.repo
|
|
[rhel7]
|
|
name=RHEL7
|
|
failovermethod=priority
|
|
baseurl=http://ftp.redhat.com/redhat/rhel/beta/7/x86_64/os/
|
|
enabled=1
|
|
metadata_expire=7d
|
|
gpgcheck=0
|
|
EOF
|
|
|
|
cat << EOF > /etc/yum.repos.d/epel.repo
|
|
[epel]
|
|
name=epel
|
|
failovermethod=priority
|
|
baseurl=http://download-i2.fedoraproject.org/pub/epel/beta/7/x86_64/
|
|
enabled=1
|
|
metadata_expire=7d
|
|
gpgcheck=0
|
|
EOF
|