create a list of non-free packages and their licenses
authorEvgeni Golov <evgeni@grml.org>
Tue, 25 Sep 2012 16:31:18 +0000 (18:31 +0200)
committerEvgeni Golov <evgeni@debian.org>
Wed, 26 Sep 2012 15:06:22 +0000 (17:06 +0200)
etc/grml/fai/config/scripts/GRMLBASE/95-package-information

index 0a7a430..05b9a33 100755 (executable)
@@ -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 #################################################################