update 2024-10-25 20:37:53

This commit is contained in:
kenzok8 2024-10-25 20:37:53 +08:00
parent ed2651a844
commit cce4df0796
2 changed files with 5 additions and 4 deletions

View File

@ -9,7 +9,7 @@ config DOCKER_CHECK_CONFIG
config DOCKER_CGROUP_OPTIONS
bool "Enable available kernel support for CGroupsV1"
default n
default y
depends on PACKAGE_dockerd
select KERNEL_CGROUP_DEVICE
select KERNEL_CGROUP_FREEZER
@ -54,7 +54,7 @@ menu "Network"
config DOCKER_NET_MACVLAN
bool "Includes macvlan kernel modules"
default n
default y
select PACKAGE_kmod-macvlan
select PACKAGE_kmod-dummy
@ -75,7 +75,7 @@ menu "Storage"
config DOCKER_STO_EXT4
bool "Enables support for ext3 or ext4 as the backing filesystem"
default n
default y
select KERNEL_EXT4_FS_POSIX_ACL
select KERNEL_EXT4_FS_SECURITY

View File

@ -1,3 +1,4 @@
#!/bin/sh
#
# USAGE: git-short-commit.sh <GIT_URL> <GIT_REF> <GIT_DIR>
@ -26,7 +27,7 @@ if [ -z "${GIT_DIR}" ]; then
fi
clean_up() {
rm --force --recursive "${GIT_DIR}"
rm -rf "${GIT_DIR}"
}
trap clean_up EXIT