26 lines
415 B
Bash
26 lines
415 B
Bash
# -*- sh -*-
|
|
STEPS="selinux epel rpm_packages python_rpms"
|
|
EPEL_RPM_URL="http://mirrors.kernel.org/fedora-epel/6/i386/epel-release-6-8.noarch.rpm"
|
|
DISTRO_CONFIG=conf/distros/rhel.yaml
|
|
|
|
## Bootstrap for Red Hat based distros
|
|
REQUIRES='
|
|
gcc
|
|
|
|
make
|
|
git
|
|
patch
|
|
python
|
|
python-devel
|
|
|
|
createrepo
|
|
yum-utils
|
|
|
|
PyYAML
|
|
|
|
rpm-build
|
|
python-pip
|
|
python-argparse
|
|
python-setuptools
|
|
'
|