forked from josch/mmdebstrap
add example on how to remove /etc/resolv.conf and /etc/hostname to make the chroot reproducible
This commit is contained in:
parent
ecc167e87e
commit
a1e5043676
1 changed files with 7 additions and 0 deletions
|
@ -6757,6 +6757,13 @@ Example: Preparing a chroot for use with autopkgtest
|
|||
--customize-hook='echo "127.0.0.1 localhost host" > "$1/etc/hosts"'
|
||||
--customize-hook=/usr/share/autopkgtest/setup-commands/setup-testbed
|
||||
|
||||
Example: to mimic B<debootstrap> behaviour, B<mmdebstrap> copies from the host.
|
||||
Remove them in a B<--customize-hook> to make the chroot reproducible across
|
||||
multiple hosts:
|
||||
|
||||
--customize-hook='rm "$1"/etc/resolv.conf'
|
||||
--customize-hook='rm "$1"/etc/hostname'
|
||||
|
||||
=item B<--hook-directory>=I<directory>
|
||||
|
||||
Execute scripts in I<directory> with filenames starting with C<setup>,
|
||||
|
|
Loading…
Reference in a new issue