We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af03f3d commit 104c7c4Copy full SHA for 104c7c4
pkg/cidata/cidata.TEMPLATE.d/boot/30-install-packages.sh
@@ -23,6 +23,11 @@ if [ "${LIMA_CIDATA_UDP_DNS_LOCAL_PORT}" -ne 0 ] || [ "${LIMA_CIDATA_TCP_DNS_LOC
23
fi
24
25
# Install minimum dependencies
26
+# apt-get detected through the first bytes of apt-get binary to ensure we're
27
+# matching to an actual binary and not a wrapper script. This case is an issue
28
+# on OpenSuse which wraps its own package manager in to a script named apt-get
29
+# to mimic certain options but doesn't offer full parameters compatibility
30
+# See : https://github.com/lima-vm/lima/pull/1014
31
if hexdump -C -n 4 "$(command -v apt-get)" | grep -qF 'ELF' >/dev/null 2>&1; then
32
pkgs=""
33
if [ "${LIMA_CIDATA_MOUNTTYPE}" = "reverse-sshfs" ]; then
0 commit comments