/usr/lib/ubiquity/target-config/31jockey_pkgs is in jockey-common 0.9.7-0ubuntu7.16.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/sh -e
# install all packages that were pulled in by enabling modules in
# jockey, since we do save the X.org configuration already. Without the
# accompanying driver packages (like nvidia-glx), the target system would be
# wrecked.
PKGLIST=/var/cache/jockey/installed_packages
[ -e $PKGLIST ] || exit 0
for p in `cat $PKGLIST`; do
apt-install $p
done
|