Skip to content

Commit

Permalink
Merge pull request #88 from lima-vm/e2fsprogs-extra
Browse files Browse the repository at this point in the history
Add e2fsprogs-extra to get resize2fs
  • Loading branch information
AkihiroSuda committed Oct 15, 2022
2 parents d238e2e + ba4767a commit 010335e
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions edition/ci
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
source edition/min
LIMA_INSTALL_CLOUD_INIT=true
LIMA_INSTALL_E2FSPROGS_EXTRA=true
LIMA_INSTALL_GIT=true
LIMA_INSTALL_OPENSSH_SFTP_SERVER=true
1 change: 1 addition & 0 deletions edition/k3s
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
source edition/min
LIMA_INSTALL_CLOUD_INIT=true
LIMA_INSTALL_E2FSPROGS_EXTRA=true
LIMA_INSTALL_GIT=true
LIMA_INSTALL_K3S=true
LIMA_INSTALL_LOGROTATE=true
Expand Down
1 change: 1 addition & 0 deletions edition/min
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export LIMA_INSTALL_CNI_PLUGINS=false
export LIMA_INSTALL_CNI_PLUGIN_FLANNEL=false
export LIMA_INSTALL_CURL=false
export LIMA_INSTALL_DOCKER=false
export LIMA_INSTALL_E2FSPROGS_EXTRA=false
export LIMA_INSTALL_GIT=false
export LIMA_INSTALL_K3S=false
export LIMA_INSTALL_CRI_DOCKERD=false
Expand Down
1 change: 1 addition & 0 deletions edition/rd
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ LIMA_INSTALL_CNI_PLUGIN_FLANNEL=true
LIMA_INSTALL_CURL=true
LIMA_INSTALL_DOCKER=true
LIMA_INSTALL_CRI_DOCKERD=true
LIMA_INSTALL_E2FSPROGS_EXTRA=true
LIMA_INSTALL_GIT=true
LIMA_INSTALL_IPTABLES=true
LIMA_INSTALL_LIMA_INIT=true
Expand Down
1 change: 1 addition & 0 deletions edition/std
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ source edition/min
LIMA_INSTALL_LIMA_INIT=true
LIMA_INSTALL_BINFMT_MISC=true
LIMA_INSTALL_CA_CERTIFICATES=true
LIMA_INSTALL_E2FSPROGS_EXTRA=true
LIMA_INSTALL_GIT=true
LIMA_INSTALL_IPTABLES=true
LIMA_INSTALL_LOGROTATE=true
Expand Down
4 changes: 4 additions & 0 deletions genapkovl-lima.sh
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,10 @@ if [ "${LIMA_INSTALL_CURL}" == "true" ]; then
echo "curl" >> "$tmp"/etc/apk/world
fi

if [ "${LIMA_INSTALL_E2FSPROGS_EXTRA}" == "true" ]; then
echo "e2fsprogs-extra" >> "$tmp"/etc/apk/world
fi

if [ "${LIMA_INSTALL_GIT}" == "true" ]; then
echo "git" >> "$tmp"/etc/apk/world
fi
Expand Down
3 changes: 3 additions & 0 deletions mkimg.lima.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ profile_lima() {
if [ "${LIMA_INSTALL_CURL}" == "true" ]; then
apks="$apks curl"
fi
if [ "${LIMA_INSTALL_E2FSPROGS_EXTRA}" == "true" ]; then
apks="$apks e2fsprogs-extra"
fi
if [ "${LIMA_INSTALL_GIT}" == "true" ]; then
apks="$apks git"
fi
Expand Down

0 comments on commit 010335e

Please sign in to comment.