X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F95-package-information;h=05b9a330ad9dad65599fb28cf03dc9598616fc26;hp=0a7a430a38e655aec3aaa2b76d688f2e5c1d2d51;hb=64025b9c5a39c18bb1ba244015375edd78f13263;hpb=b34341196fddcad830aacf3a5443f00a679c66f1 diff --git a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information index 0a7a430..05b9a33 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/95-package-information +++ b/etc/grml/fai/config/scripts/GRMLBASE/95-package-information @@ -21,6 +21,23 @@ else $ROOTCMD dpkg-query -W --showformat='${Package}\t${Installed-Size}\n' > \ "${LOGDIR}"/packages.size fi + # store a list of non-free packages and their licenses + if $ROOTCMD test -x /usr/bin/aptitude ; then + echo "The following packages from the Debian non-free section are included in this release" \ + > "${LOGDIR}"/nonfree-licenses.txt + echo >> "${LOGDIR}"/nonfree-licenses.txt + for pkg in `$ROOTCMD aptitude search '~i ~snon-free' -F '%p'` ; do + echo "Package: ${pkg}" >> "${LOGDIR}"/nonfree-licenses.txt + echo "========================================================================" \ + >> "${LOGDIR}"/nonfree-licenses.txt + if $ROOTCMD test -r "/usr/share/doc/${pkg}/copyright" ; then + $ROOTCMD cat "/usr/share/doc/${pkg}/copyright" >> "${LOGDIR}"/nonfree-licenses.txt + else + echo "${pkg} does not provide a copyright file" >> "${LOGDIR}"/nonfree-licenses.txt + fi + echo >> "${LOGDIR}"/nonfree-licenses.txt + done + fi fi ## END OF FILE #################################################################