# ## Copyright (C) 2019 Wind River Systems, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. FILESEXTRAPATHS_prepend := "${THISDIR}/files:" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=89aea4e17d99a7cacdbeed46a0096b10" SRC_URI = " \ file://LICENSE \ file://barbican.conf \ file://gunicorn-config.py \ file://barbican-api-paste.ini \ file://openstack-barbican-api.service \ " do_configure() { : } do_compile() { : } do_install() { install -m 0755 -d ${D}/${datadir}/starlingx/barbican/ install -m 0755 -d ${D}/${datadir}/starlingx/barbican/backup/ install -m 0755 -d ${D}/${systemd_system_unitdir}/ install -m 0755 -d ${D}/var/log/barbican/ install -m 0644 ${WORKDIR}/barbican.conf ${D}/${datadir}/starlingx/barbican install -m 0644 ${WORKDIR}/barbican-api-paste.ini ${D}/${datadir}/starlingx/barbican install -m 0644 ${WORKDIR}/gunicorn-config.py ${D}/${datadir}/starlingx/barbican install -m 0644 ${WORKDIR}/openstack-barbican-api.service ${D}/${systemd_system_unitdir}/openstack-barbican-api.service } pkg_postinst_ontarget_${PN}() { tar -C / -czpf /usr/share/starlingx/barbican/backup/barbican.$(date +%s).tar.gz ./etc/barbican if [ ! -f /usr/share/starlingx/barbican/backup/barbican.default.tar.gz ]; then tar -C / -czpf /usr/share/starlingx/barbican/backup/barbican.default.tar.gz ./etc/barbican fi; rm -rf /etc/barbican/ # Restore to default settings tar -C / -xzpf /usr/share/starlingx/barbican/backup/barbican.default.tar.gz cp /usr/share/starlingx/barbican/barbican-api-paste.ini /etc/barbican/ cp /usr/share/starlingx/barbican/barbican.conf /etc/barbican/ cp /usr/share/starlingx/barbican/gunicorn-config.py /etc/barbican/ systemctl daemon-reload } pkg_prerm_ontarget_${PN}() { tar -C / -czpf /usr/share/starlingx/barbican/backup/barbican.$(date +%s).tar.gz ./etc/barbican rm -rf /etc/barbican/ # Restore to default settings tar -C / -xzpf /usr/share/starlingx/barbican/backup/barbican.default.tar.gz } FILES_${PN} = " \ ${datadir}/starlingx/barbican/ \ ${systemd_system_unitdir}/openstack-barbican-api.service \ /var/log/barbican \ "