diff --git a/mq-advanced-server-rhel/mq-buildah.sh b/mq-advanced-server-rhel/mq-buildah.sh index a00c030..c96bd62 100755 --- a/mq-advanced-server-rhel/mq-buildah.sh +++ b/mq-advanced-server-rhel/mq-buildah.sh @@ -117,6 +117,10 @@ buildah run --user root $ctr_mq -- touch /run/termination-log buildah run --user root $ctr_mq -- chown mqm:root /run/termination-log buildah run --user root $ctr_mq -- chmod 0660 /run/termination-log +# Copy in licenses from installed packages +install --mode 0550 --owner root --group root ./mq-advanced-server-rhel/writePackages.sh ${mnt_mq}/usr/local/bin/writePackages +buildah run --user root $ctr_mq -- /usr/local/bin/writePackages + ############################################################################### # Final Buildah commands ############################################################################### diff --git a/mq-advanced-server-rhel/writePackages.sh b/mq-advanced-server-rhel/writePackages.sh new file mode 100755 index 0000000..91ce8f7 --- /dev/null +++ b/mq-advanced-server-rhel/writePackages.sh @@ -0,0 +1,30 @@ +#!/bin/bash +# -*- mode: sh -*- +# © Copyright IBM Corporation 2018, 2019 +# +# +# 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. + +# Copy in licenses from installed packages + +set -e + +rm -f /licenses/installed_package_notices + +for p in $(rpm -qa | sort) +do + rpm -qi $p >> /licenses/installed_package_notices + printf "\n" >> /licenses/installed_package_notices +done + +chmod 0444 /licenses/installed_package_notices