alpine: No generar .apk-new

This commit is contained in:
Cat /dev/Nulo 2022-06-17 21:14:26 -03:00
parent e618e3cb00
commit 0299e7a08b

View file

@ -101,9 +101,9 @@ function alpine.make_world(rootfs_path, packages)
local status = os.execute("doas apk update --no-cache --root "..rootfs_path) local status = os.execute("doas apk update --no-cache --root "..rootfs_path)
if not (status == 0) then return status end if not (status == 0) then return status end
local status = os.execute("doas apk upgrade --no-cache --root "..rootfs_path) local status = os.execute("doas apk upgrade --clean-protected --no-cache --root "..rootfs_path)
if not (status == 0) then return status end if not (status == 0) then return status end
local status = os.execute("doas apk add --no-cache --root "..rootfs_path) local status = os.execute("doas apk add --clean-protected --no-cache --root "..rootfs_path)
if not (status == 0) then return status end if not (status == 0) then return status end
end end