Currently the install role only supported installation of a single deb package, presumably the linux-image-*.deb package. This PR creates an additional role var for passing in a list, rather than a single filepath as a string.
If more packages are required, such as kernel-headers or kernel-src, use the grsecurity_install_deb_packages list var to specify all of them for installation. The remainder of the role logic remains constant.
Currently the install role only supported installation of a single deb package, presumably the
linux-image-*.deb
package. This PR creates an additional role var for passing in a list, rather than a single filepath as a string.If more packages are required, such as kernel-headers or kernel-src, use the
grsecurity_install_deb_packages
list var to specify all of them for installation. The remainder of the role logic remains constant.Together with #71, satisfies #64.