forked from josch/mmdebstrap
add --interactive=never to rm call to avoid prompts for removal of write protected files in proot mode
This commit is contained in:
parent
903b318ccc
commit
29550acb88
1 changed files with 5 additions and 1 deletions
|
@ -1963,7 +1963,11 @@ sub main() {
|
||||||
# without unshare, we use the system's rm to recursively remove the
|
# without unshare, we use the system's rm to recursively remove the
|
||||||
# temporary directory just to make sure that we do not accidentally
|
# temporary directory just to make sure that we do not accidentally
|
||||||
# remove more than we should by using --one-file-system.
|
# remove more than we should by using --one-file-system.
|
||||||
0 == system('rm', '--recursive', '--preserve-root', '--one-file-system', $options->{root}) or die "rm failed: $!";
|
#
|
||||||
|
# --interactive=never is needed when in proot mode, the
|
||||||
|
# write-protected file /apt/apt.conf.d/01autoremove-kernels is to
|
||||||
|
# be removed.
|
||||||
|
0 == system('rm', '--interactive=never', '--recursive', '--preserve-root', '--one-file-system', $options->{root}) or die "rm failed: $!";
|
||||||
} else {
|
} else {
|
||||||
die "unknown mode: $options->{mode}";
|
die "unknown mode: $options->{mode}";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue