diff options
author | Helmut Grohne <helmut@subdivi.de> | 2022-12-21 21:11:50 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2022-12-21 21:11:50 +0100 |
commit | 6aa2bcd8e69e7a5ff9a2fb689711cba6a277ecf6 (patch) | |
tree | d285a15a19633a674a43196609b4b121623593d0 | |
parent | fdcc9a677b19e2689d863a3e8286733ec3be67af (diff) | |
download | debvm-6aa2bcd8e69e7a5ff9a2fb689711cba6a277ecf6.tar.gz |
debvm-create: skip the apt cleanup
Rather than downloading lists a second time, skip cleaning up the lists.
Reported-by: Johannes Schauer Marin Rodrigues <josch@debian.org>
-rwxr-xr-x | debvm-create | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debvm-create b/debvm-create index d827e5c..c271207 100755 --- a/debvm-create +++ b/debvm-create @@ -155,7 +155,7 @@ if test -n "$SSHKEY"; then "$@" fi -set -- '--customize-hook=chroot "$1" apt update' "$@" +set -- --skip=cleanup/apt "$@" case "$SUITE" in jessie) |