Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
lima-vm
GitHub Repository: lima-vm/lima
Path: blob/master/pkg/cidata/cidata.TEMPLATE.d/boot/06-etc-hosts.sh
2662 views
1
#!/bin/bash
2
3
# SPDX-FileCopyrightText: Copyright The Lima Authors
4
# SPDX-License-Identifier: Apache-2.0
5
6
set -eux -o pipefail
7
8
# Define host.lima.internal in case the hostResolver is disabled. When using
9
# the hostResolver, the name is provided by the lima resolver itself because
10
# it doesn't have access to /etc/hosts inside the VM.
11
sed -i '/host.lima.internal/d' /etc/hosts
12
echo -e "${LIMA_CIDATA_SLIRP_GATEWAY}\thost.lima.internal" >>/etc/hosts
13
14