We are specifying the argument to get_packages incorrectly, so we are
not actually adding the packages in "general" to the list of packages.
In most cases, this is hidden as other more specific plugins/services
request their packages. However, as
I2dafd32f211fcbc9fff53030d736d97a5f1bb2df shows, not always. I think
this was uncovered by 5f8133caac097235ed4fe73d878df0ee907eb51c
Change-Id: Ie1b8d09369281059d21da61b2725a457f708ae9e
| ... | ... |
@@ -61,7 +61,7 @@ export_proxy_variables |
| 61 | 61 |
# ================ |
| 62 | 62 |
|
| 63 | 63 |
# Install package requirements |
| 64 |
-PACKAGES=$(get_packages general $ENABLED_SERVICES) |
|
| 64 |
+PACKAGES=$(get_packages general,$ENABLED_SERVICES) |
|
| 65 | 65 |
PACKAGES="$PACKAGES $(get_plugin_packages)" |
| 66 | 66 |
|
| 67 | 67 |
if is_ubuntu && echo $PACKAGES | grep -q dkms ; then |