aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorbaigk <baiguoku@huawei.com>2015-12-23 13:38:25 +0800
committerbaigk <baiguoku@huawei.com>2015-12-23 13:39:39 +0800
commit89a5321aa8d7981cc5422e72ba5827b710bac9ee (patch)
treefd47d273b68f6e75d5d8f70431d8aec5dcdeb9f2 /build
parent771c919d4aae01758ed54220288f12e4f64e35c7 (diff)
support build compass-core ppa
JIRA: COMPASS-213 Change-Id: I95617273e53df5ae060dd8053fbb2eaff946de06 Signed-off-by: baigk <baiguoku@huawei.com>
Diffstat (limited to 'build')
-rwxr-xr-xbuild/make_repo.sh2
-rw-r--r--build/os/centos/rhel7/compass/Dockerfile.tmpl25
2 files changed, 26 insertions, 1 deletions
diff --git a/build/make_repo.sh b/build/make_repo.sh
index f5c78d40..67f2e2f2 100755
--- a/build/make_repo.sh
+++ b/build/make_repo.sh
@@ -164,7 +164,7 @@ function make_all_repo()
make_repo --os-ver rhel7 --package-tag compass \
--tmpl "${WORK_PATH}/build/templates/compass_core.tmpl" \
--default-package "kernel-devel epel-release wget libxml2 glibc gcc perl openssl-libs mkisofs createrepo \
- python-yaml python-jinja2 python-paramiko elasticsearch logstash bind-license \
+ python-yaml python-jinja2 python-paramiko elasticsearch logstash bind-license vim \
yum cobbler cobbler-web createrepo mkisofs syslinux pykickstart bind rsync fence-agents \
dhcp xinetd tftp-server httpd libselinux-python python-setuptools python-devel mysql-devel \
mysql-server mysql MySQL-python redis mod_wsgi net-tools rabbitmq-server nfs-utils" \
diff --git a/build/os/centos/rhel7/compass/Dockerfile.tmpl b/build/os/centos/rhel7/compass/Dockerfile.tmpl
new file mode 100644
index 00000000..0d0fbe10
--- /dev/null
+++ b/build/os/centos/rhel7/compass/Dockerfile.tmpl
@@ -0,0 +1,25 @@
+FROM centos:7.2.1511
+MAINTAINER Chigang(Justin) <chigang@huawei.com>
+
+# set cache enable
+RUN sed -i 's/keepcache=0/keepcache=1/g' /etc/yum.conf
+#set packages = $getVar('spcial_packages', [])
+#for package in $packages
+ADD ./RedHat/packages/$package /var/cache/yum/x86_64/7/base/packages/
+#end for
+#set scripts = $getVar('scripts', [])
+#for script in $scripts
+ADD ./RedHat/script/$script /tmp/chigang/$script
+RUN chmod +x /tmp/chigang/$script
+RUN /tmp/chigang/$script
+#end for
+ADD ./install_packages.sh /tmp/chigang/install_packages.sh
+RUN chmod +x /tmp/chigang/install_packages.sh
+RUN /tmp/chigang/install_packages.sh
+
+ADD ./cp_repo.sh /tmp/chigang/cp_repo.sh
+RUN chmod +x /tmp/chigang/cp_repo.sh
+RUN mkdir /result
+
+CMD ["/tmp/chigang/cp_repo.sh"]
+#VOLUME /tmp/chigang