Skip to content

Commit

Permalink
vm: do not require system utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
LaszloGombos committed Nov 18, 2023
1 parent 0f4b7f6 commit c0ca9da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 5 additions & 2 deletions embedded/defaults/colima.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ cpuType: host
# EXAMPLE - script executed as root
# provision:
# - mode: system
# script: apk add htop vim
# script: apt-get install htop vim
#
# EXAMPLE - script executed as user
# provision:
Expand All @@ -150,7 +150,10 @@ cpuType: host
# touch ~/.provision
#
# Default: []
provision: []
provision:
- mode: system
# utilities
script: apt update -y && apt-get install htop vim inetutils-ping dnsutils --qq

# Modify ~/.ssh/config automatically to include a SSH config for the virtual machine.
# SSH config will still be generated in ~/.colima/ssh_config regardless.
Expand Down
2 changes: 0 additions & 2 deletions environment/vm/lima/deb/mantic.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ var manticPackages = []string{
"iptables",
// k8s
"socat",
// utilities
"htop", "vim", "inetutils-ping", "dnsutils",
}

var _ URISource = (*Mantic)(nil)
Expand Down

0 comments on commit c0ca9da

Please sign in to comment.